|
38 | 38 | use Rector\Php71\Rector\FuncCall\CountOnNullRector; |
39 | 39 | use Rector\Php73\Rector\FuncCall\JsonThrowOnErrorRector; |
40 | 40 | use Rector\Php73\Rector\FuncCall\StringifyStrNeedlesRector; |
41 | | -use Rector\PHPUnit\CodeQuality\Rector\Class_\ConstructClassMethodToSetUpTestCaseRector; |
42 | 41 | use Rector\PHPUnit\CodeQuality\Rector\Class_\YieldDataProviderRector; |
43 | 42 | use Rector\PHPUnit\Set\PHPUnitSetList; |
44 | 43 | use Rector\Privatization\Rector\Property\PrivatizeFinalClassPropertyRector; |
|
57 | 56 | PHPUnitSetList::PHPUNIT_100, |
58 | 57 | ]); |
59 | 58 |
|
60 | | - $rectorConfig->parallel(240, 8, 1); |
| 59 | + $rectorConfig->parallel(); |
61 | 60 |
|
62 | 61 | // paths to refactor; solid alternative to CLI arguments |
63 | 62 | $rectorConfig->paths([__DIR__ . '/app', __DIR__ . '/system', __DIR__ . '/tests', __DIR__ . '/utils']); |
|
89 | 88 | __DIR__ . '/tests/system/Test/ReflectionHelperTest.php', |
90 | 89 | ], |
91 | 90 |
|
92 | | - ConstructClassMethodToSetUpTestCaseRector::class => [ |
93 | | - // breaks the constructor |
94 | | - __DIR__ . '/system/Test/TestResponse.php', |
95 | | - // See https://github.com/rectorphp/rector/issues/8188 |
96 | | - __DIR__ . '/system/Test/ControllerResponse.php', |
97 | | - ], |
98 | | - |
99 | 91 | RemoveUnusedConstructorParamRector::class => [ |
100 | 92 | // there are deprecated parameters |
101 | 93 | __DIR__ . '/system/Debug/Exceptions.php', |
|
0 commit comments