Skip to content

Commit

Permalink
More interfaces that are not supposed to be implemented in userland
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Oct 1, 2024
1 parent 41275dc commit 778af2e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Rules/Api/BcUncoveredInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
use PHPStan\Analyser\Scope;
use PHPStan\Command\Output;
use PHPStan\Reflection\Callables\CallableParametersAcceptor;
use PHPStan\Reflection\ClassConstantReflection;
use PHPStan\Reflection\ClassMemberReflection;
use PHPStan\Reflection\ConstantReflection;
use PHPStan\Reflection\ExtendedMethodReflection;
use PHPStan\Reflection\ExtendedPropertyReflection;
use PHPStan\Reflection\FunctionReflection;
Expand Down Expand Up @@ -41,6 +44,9 @@ final class BcUncoveredInterface
RuleError::class,
TipRuleError::class,
Output::class,
ClassMemberReflection::class,
ConstantReflection::class,
ClassConstantReflection::class,
];

}

0 comments on commit 778af2e

Please sign in to comment.