Skip to content

Commit

Permalink
Remove part of the exclude_rectors
Browse files Browse the repository at this point in the history
  • Loading branch information
zingimmick committed Aug 21, 2020
1 parent 94e110e commit b34151d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,10 @@
declare(strict_types=1);

use Rector\Core\Configuration\Option;
use Rector\DeadCode\Rector\Function_\RemoveUnusedFunctionRector;
use Rector\PHPStan\Rector\Cast\RecastingRemovalRector;
use Rector\PHPUnit\Rector\Class_\AddSeeTestAnnotationRector;
use Rector\Set\ValueObject\SetList;
use Rector\SOLID\Rector\Class_\ChangeReadOnlyVariableWithDefaultValueToConstantRector;
use Rector\SOLID\Rector\Class_\FinalizeClassesWithoutChildrenRector;
use Rector\SOLID\Rector\Class_\RepeatedLiteralToClassConstantRector;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
Expand All @@ -35,10 +32,7 @@
[
FinalizeClassesWithoutChildrenRector::class,
ChangeReadOnlyVariableWithDefaultValueToConstantRector::class,
RecastingRemovalRector::class,
RepeatedLiteralToClassConstantRector::class,
AddSeeTestAnnotationRector::class,
RemoveUnusedFunctionRector::class,
]
);
$parameters->set(
Expand Down

0 comments on commit b34151d

Please sign in to comment.