We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eb6697 commit fe0da3dCopy full SHA for fe0da3d
1 file changed
rector.php
@@ -20,6 +20,7 @@
20
use Rector\CodingStyle\Rector\FuncCall\CountArrayToEmptyArrayComparisonRector;
21
use Rector\Config\RectorConfig;
22
use Rector\Core\ValueObject\PhpVersion;
23
+use Rector\DeadCode\Rector\Cast\RecastingRemovalRector;
24
use Rector\DeadCode\Rector\ClassMethod\RemoveUnusedPromotedPropertyRector;
25
use Rector\DeadCode\Rector\If_\UnwrapFutureCompatibleIfPhpVersionRector;
26
use Rector\DeadCode\Rector\Property\RemoveUnusedPrivatePropertyRector;
@@ -109,6 +110,11 @@
109
110
__DIR__ . '/tests/Commands/UserModelGeneratorTest.php',
111
__DIR__ . '/tests/Controllers/LoginTest.php',
112
],
113
+
114
+ RecastingRemovalRector::class => [
115
+ // To check old Email Config file
116
+ __DIR__ . '/src/Commands/Setup.php',
117
+ ],
118
]);
119
120
// auto import fully qualified class names
0 commit comments