Skip to content

Commit

Permalink
Merge pull request #7153 from orklah/fix-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
weirdan committed Dec 14, 2021
2 parents 995ef92 + 93689c2 commit bfc3cdd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dictionaries/CallMap.php
Expand Up @@ -11460,6 +11460,7 @@
'ReflectionFunctionAbstract::isDeprecated' => ['bool'],
'ReflectionFunctionAbstract::isGenerator' => ['bool'],
'ReflectionFunctionAbstract::isInternal' => ['bool'],
'ReflectionFunctionAbstract::isStatic' => ['bool'],
'ReflectionFunctionAbstract::isUserDefined' => ['bool'],
'ReflectionFunctionAbstract::isVariadic' => ['bool'],
'ReflectionFunctionAbstract::returnsReference' => ['bool'],
Expand Down Expand Up @@ -11509,7 +11510,6 @@
'ReflectionMethod::isPrivate' => ['bool'],
'ReflectionMethod::isProtected' => ['bool'],
'ReflectionMethod::isPublic' => ['bool'],
'ReflectionMethod::isStatic' => ['bool'],
'ReflectionMethod::isUserDefined' => ['bool'],
'ReflectionMethod::isVariadic' => ['bool'],
'ReflectionMethod::returnsReference' => ['bool'],
Expand Down
5 changes: 4 additions & 1 deletion dictionaries/CallMap_81_delta.php
Expand Up @@ -45,6 +45,7 @@
'ReflectionEnumUnitCase::getEnum' => ['ReflectionEnum'],
'ReflectionEnumUnitCase::getValue' => ['UnitEnum'],
'ReflectionEnumBackedCase::getBackingValue' => ['string|int'],
'ReflectionFunctionAbstract::isStatic' => ['bool'],
],

'changed' => [
Expand Down Expand Up @@ -1106,5 +1107,7 @@
],
],

'removed' => [],
'removed' => [
'ReflectionMethod::isStatic' => ['bool'],
],
];
2 changes: 2 additions & 0 deletions stubs/Reflection.phpstub
Expand Up @@ -99,6 +99,8 @@ class ReflectionMethod implements Reflector
* @return array<ReflectionAttribute<TClass>>
*/
public function getAttributes(?string $name = null, int $flags = 0): array {}

public function isStatic(): bool {}
}

class ReflectionClassConstant
Expand Down

0 comments on commit bfc3cdd

Please sign in to comment.