mirror of
https://github.com/danog/psalm.git
synced 2025-01-22 05:41:20 +01:00
Merge pull request #10091 from vudaltsov/improve-refelection-stubs
This commit is contained in:
commit
fa5f15058b
@ -10631,7 +10631,7 @@ return [
|
||||
'ReflectionParameter::getDefaultValue' => ['mixed'],
|
||||
'ReflectionParameter::getDefaultValueConstantName' => ['?string'],
|
||||
'ReflectionParameter::getName' => ['string'],
|
||||
'ReflectionParameter::getPosition' => ['int'],
|
||||
'ReflectionParameter::getPosition' => ['int<0, max>'],
|
||||
'ReflectionParameter::getType' => ['?ReflectionType'],
|
||||
'ReflectionParameter::hasType' => ['bool'],
|
||||
'ReflectionParameter::isArray' => ['bool'],
|
||||
|
@ -5969,7 +5969,7 @@ return [
|
||||
'ReflectionParameter::getDefaultValue' => ['mixed'],
|
||||
'ReflectionParameter::getDefaultValueConstantName' => ['?string'],
|
||||
'ReflectionParameter::getName' => ['string'],
|
||||
'ReflectionParameter::getPosition' => ['int'],
|
||||
'ReflectionParameter::getPosition' => ['int<0, max>'],
|
||||
'ReflectionParameter::getType' => ['?ReflectionType'],
|
||||
'ReflectionParameter::hasType' => ['bool'],
|
||||
'ReflectionParameter::isArray' => ['bool'],
|
||||
|
@ -28,7 +28,7 @@ class ReflectionAttribute
|
||||
|
||||
/**
|
||||
* @psalm-pure
|
||||
* @return int-mask-of<Attribute::TARGET_*>
|
||||
* @return Attribute::TARGET_*
|
||||
*/
|
||||
public function getTarget() : int
|
||||
{
|
||||
|
@ -416,7 +416,7 @@ abstract class ReflectionFunctionAbstract implements Reflector
|
||||
* @since 8.0
|
||||
* @template TClass as object
|
||||
* @param class-string<TClass>|null $name
|
||||
* @return ($name is null ? array<ReflectionAttribute<object>> : array<ReflectionAttribute<TClass>>)
|
||||
* @return ($name is null ? list<ReflectionAttribute<object>> : list<ReflectionAttribute<TClass>>)
|
||||
*/
|
||||
public function getAttributes(?string $name = null, int $flags = 0): array {}
|
||||
}
|
||||
@ -463,7 +463,7 @@ class ReflectionProperty implements Reflector
|
||||
* @since 8.0
|
||||
* @template TClass as object
|
||||
* @param class-string<TClass>|null $name
|
||||
* @return ($name is null ? array<ReflectionAttribute<object>> : array<ReflectionAttribute<TClass>>)
|
||||
* @return ($name is null ? list<ReflectionAttribute<object>> : list<ReflectionAttribute<TClass>>)
|
||||
*/
|
||||
public function getAttributes(?string $name = null, int $flags = 0): array {}
|
||||
|
||||
@ -540,7 +540,7 @@ class ReflectionProperty implements Reflector
|
||||
class ReflectionMethod extends ReflectionFunctionAbstract
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
* @var non-empty-string
|
||||
* @readonly
|
||||
*/
|
||||
public $name;
|
||||
@ -599,7 +599,7 @@ class ReflectionClassConstant implements Reflector
|
||||
* @since 8.0
|
||||
* @template TClass as object
|
||||
* @param class-string<TClass>|null $name
|
||||
* @return ($name is null ? array<ReflectionAttribute<object>> : array<ReflectionAttribute<TClass>>)
|
||||
* @return ($name is null ? list<ReflectionAttribute<object>> : list<ReflectionAttribute<TClass>>)
|
||||
*/
|
||||
public function getAttributes(?string $name = null, int $flags = 0): array {}
|
||||
|
||||
@ -635,7 +635,7 @@ class ReflectionParameter implements Reflector {
|
||||
* @since 8.0
|
||||
* @template TClass as object
|
||||
* @param class-string<TClass>|null $name
|
||||
* @return ($name is null ? array<ReflectionAttribute<object>> : array<ReflectionAttribute<TClass>>)
|
||||
* @return ($name is null ? list<ReflectionAttribute<object>> : list<ReflectionAttribute<TClass>>)
|
||||
*/
|
||||
public function getAttributes(?string $name = null, int $flags = 0): array {}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user