We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff677ba commit f45cce0Copy full SHA for f45cce0
1 file changed
rector.php
@@ -29,6 +29,7 @@
29
use Rector\CodingStyle\Rector\FuncCall\CountArrayToEmptyArrayComparisonRector;
30
use Rector\Config\RectorConfig;
31
use Rector\DeadCode\Rector\ClassMethod\RemoveUnusedPrivateMethodRector;
32
+use Rector\DeadCode\Rector\If_\RemoveAlwaysTrueIfConditionRector;
33
use Rector\DeadCode\Rector\If_\UnwrapFutureCompatibleIfPhpVersionRector;
34
use Rector\DeadCode\Rector\MethodCall\RemoveEmptyMethodCallRector;
35
use Rector\EarlyReturn\Rector\Foreach_\ChangeNestedForeachIfsToEarlyContinueRector;
@@ -129,6 +130,8 @@
129
130
GetMockBuilderGetMockToCreateMockRector::class => [
131
__DIR__ . '/tests/system/Email/EmailTest.php',
132
],
133
+
134
+ RemoveAlwaysTrueIfConditionRector::class,
135
]);
136
137
// auto import fully qualified class names
0 commit comments