We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5258f86 commit 5d35811Copy full SHA for 5d35811
src/Rules/Methods/AlwaysUsedMethodExtension.php
@@ -2,7 +2,7 @@
2
3
namespace PHPStan\Rules\Methods;
4
5
-use PHPStan\Reflection\MethodReflection;
+use PHPStan\Reflection\ExtendedMethodReflection;
6
7
/**
8
* This is the extension interface to implement if you want to describe an always-used class method.
@@ -22,6 +22,6 @@
22
interface AlwaysUsedMethodExtension
23
{
24
25
- public function isAlwaysUsed(MethodReflection $methodReflection): bool;
+ public function isAlwaysUsed(ExtendedMethodReflection $methodReflection): bool;
26
27
}
0 commit comments