Skip to content

Commit

Permalink
Even more interfaces that are not supposed to be implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Oct 1, 2024
1 parent 778af2e commit cb6ab55
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/Rules/Api/BcUncoveredInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,20 @@

use PHPStan\Analyser\Scope;
use PHPStan\Command\Output;
use PHPStan\Command\OutputStyle;
use PHPStan\DependencyInjection\Container;
use PHPStan\Node\ReturnStatementsNode;
use PHPStan\Node\VirtualNode;
use PHPStan\PhpDoc\Tag\TypedTag;
use PHPStan\Reflection\Callables\CallableParametersAcceptor;
use PHPStan\Reflection\ClassConstantReflection;
use PHPStan\Reflection\ClassMemberAccessAnswerer;
use PHPStan\Reflection\ClassMemberReflection;
use PHPStan\Reflection\ConstantReflection;
use PHPStan\Reflection\ExtendedMethodReflection;
use PHPStan\Reflection\ExtendedPropertyReflection;
use PHPStan\Reflection\FunctionReflection;
use PHPStan\Reflection\NamespaceAnswerer;
use PHPStan\Reflection\ParameterReflectionWithPhpDocs;
use PHPStan\Reflection\ParametersAcceptorWithPhpDocs;
use PHPStan\Reflection\ReflectionProvider;
Expand All @@ -21,13 +28,21 @@
use PHPStan\Rules\NonIgnorableRuleError;
use PHPStan\Rules\RuleError;
use PHPStan\Rules\TipRuleError;
use PHPStan\Type\CompoundType;
use PHPStan\Type\Generic\TemplateType;
use PHPStan\Type\Type;
use PHPStan\Type\TypeWithClassName;

final class BcUncoveredInterface
{

public const CLASSES = [
Type::class,
CompoundType::class,
TemplateType::class,
TypedTag::class,
TypeWithClassName::class,
VirtualNode::class,
ReflectionProvider::class,
Scope::class,
FunctionReflection::class,
Expand All @@ -47,6 +62,11 @@ final class BcUncoveredInterface
ClassMemberReflection::class,
ConstantReflection::class,
ClassConstantReflection::class,
ClassMemberAccessAnswerer::class,
NamespaceAnswerer::class,
Container::class,
OutputStyle::class,
ReturnStatementsNode::class,
];

}

0 comments on commit cb6ab55

Please sign in to comment.