We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da5e43 commit 33962a9Copy full SHA for 33962a9
rector.php
@@ -3,6 +3,7 @@
3
declare(strict_types=1);
4
5
use PHPDevsr\Rector\Codeigniter4\Set\CodeigniterSetList;
6
+use Rector\Caching\ValueObject\Storage\FileCacheStorage;
7
use Rector\Config\RectorConfig;
8
use Rector\Php55\Rector\String_\StringClassNameToClassConstantRector;
9
@@ -16,6 +17,13 @@
16
17
__DIR__ . '/tests',
18
__DIR__ . '/config',
19
])
20
+ ->withParallel(120, 8, 10)
21
+ ->withCache('/tmp/rector', FileCacheStorage::class)
22
+ ->withPHPStanConfigs([
23
+ __DIR__ . '/phpstan.neon.dist',
24
+ __DIR__ . '/vendor/codeigniter/phpstan-codeigniter/extension.neon',
25
+ __DIR__ . '/vendor/phpstan/phpstan-strict-rules/rules.neon',
26
+ ])
27
->withSkip([
28
// for tests
29
'*/Source/*',
0 commit comments