We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41275dc commit 778af2eCopy full SHA for 778af2e
src/Rules/Api/BcUncoveredInterface.php
@@ -5,6 +5,9 @@
5
use PHPStan\Analyser\Scope;
6
use PHPStan\Command\Output;
7
use PHPStan\Reflection\Callables\CallableParametersAcceptor;
8
+use PHPStan\Reflection\ClassConstantReflection;
9
+use PHPStan\Reflection\ClassMemberReflection;
10
+use PHPStan\Reflection\ConstantReflection;
11
use PHPStan\Reflection\ExtendedMethodReflection;
12
use PHPStan\Reflection\ExtendedPropertyReflection;
13
use PHPStan\Reflection\FunctionReflection;
@@ -41,6 +44,9 @@ final class BcUncoveredInterface
41
44
RuleError::class,
42
45
TipRuleError::class,
43
46
Output::class,
47
+ ClassMemberReflection::class,
48
+ ConstantReflection::class,
49
+ ClassConstantReflection::class,
50
];
51
52
}
0 commit comments