Skip to content

Commit

Permalink
fix missing-in-set config
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Nov 10, 2023
1 parent 8046f96 commit 6b4ca21
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions utils/Command/MissingInSetCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use Rector\CodingStyle\Rector\Switch_\BinarySwitchToIfElseRector;
use Rector\Core\Contract\Rector\ConfigurableRectorInterface;
use Rector\Php71\Rector\FuncCall\CountOnNullRector;
use Rector\PHPUnit\CodeQuality\Rector\MethodCall\RemoveSetMethodsMethodCallRector;
use Rector\Privatization\Rector\Class_\FinalizeClassesWithoutChildrenCollectorRector;
use Rector\TypeDeclaration\Rector\BooleanAnd\BinaryOpNullableToInstanceofRector;
use Rector\TypeDeclaration\Rector\Property\TypedPropertyFromStrictConstructorReadonlyClassRector;
Expand Down Expand Up @@ -38,6 +39,9 @@ final class MissingInSetCommand extends Command
TypedPropertyFromStrictConstructorReadonlyClassRector::class,
BinarySwitchToIfElseRector::class,
CountOnNullRector::class,

// namespace to be moved from CodeQuality to PHPUnit100
RemoveSetMethodsMethodCallRector::class,
];

public function __construct(
Expand Down

0 comments on commit 6b4ca21

Please sign in to comment.