Skip to content

Commit 14a1be4

Browse files
committed
re-run rector
1 parent 6abb3ca commit 14a1be4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rector.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
declare(strict_types=1);
44

55
use Rector\Config\RectorConfig;
6-
use Rector\Php81\Rector\Array_\FirstClassCallableRector;
6+
use Rector\Php81\Rector\Array_\ArrayToFirstClassCallableRector;
77

88
return RectorConfig::configure()
99
->withPhpSets(php82: true)
10-
->withPreparedSets(deadCode: true, codeQuality: true, naming: true, typeDeclarations: true, codingStyle: true)
10+
->withPreparedSets(deadCode: true, codeQuality: true, codingStyle: true, typeDeclarations: true, naming: true)
1111
->withImportNames(removeUnusedImports: true)
1212
->withPaths([
1313
__DIR__ . '/config',
@@ -17,5 +17,5 @@
1717
])
1818
->withRootFiles()
1919
->withSkip([
20-
FirstClassCallableRector::class,
20+
ArrayToFirstClassCallableRector::class,
2121
]);

0 commit comments

Comments
 (0)