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 a67ba28 commit 64ecfd2Copy full SHA for 64ecfd2
.gitignore
@@ -9,4 +9,4 @@ script/*
9
.env
10
.idea
11
/.php_cs
12
-*.cache
+/*.cache
rector.php
@@ -8,9 +8,8 @@
8
use Rector\Set\ValueObject\LevelSetList;
return static function (RectorConfig $rectorConfig): void {
- $rectorConfig->paths([
- __DIR__ . '/test',
+ $rectorConfig->paths([__DIR__ . '/test',]);
+ $rectorConfig->sets([
13
+ PHPUnitSetList::PHPUNIT_100
14
]);
-
15
- $rectorConfig->sets([PHPUnitSetList::PHPUNIT_100,]);
16
};
0 commit comments