Skip to content

Commit 64ecfd2

Browse files
committed
Ignore *.cache files in the root folder
1 parent a67ba28 commit 64ecfd2

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ script/*
99
.env
1010
.idea
1111
/.php_cs
12-
*.cache
12+
/*.cache

rector.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@
88
use Rector\Set\ValueObject\LevelSetList;
99

1010
return static function (RectorConfig $rectorConfig): void {
11-
$rectorConfig->paths([
12-
__DIR__ . '/test',
11+
$rectorConfig->paths([__DIR__ . '/test',]);
12+
$rectorConfig->sets([
13+
PHPUnitSetList::PHPUNIT_100
1314
]);
14-
15-
$rectorConfig->sets([PHPUnitSetList::PHPUNIT_100,]);
1615
};

0 commit comments

Comments
 (0)