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 21bae5b commit d30627eCopy full SHA for d30627e
resources/.php-cs-fixer.dist.php.template
@@ -23,6 +23,6 @@ return (new Config())
23
// ->notPath([/* ... */])
24
// 💡 extra configs
25
// ->ignoreDotFiles(false) // true by default in v3, false in v4 or future mode
26
- // ->ignoreVCSIgnored(true) // true by default
+ // ->ignoreVCS(true) // true by default
27
)
28
;
src/Finder.php
@@ -34,8 +34,8 @@ public function __construct()
34
->files()
35
->name('/\.php$/')
36
->exclude('vendor')
37
- ->ignoreVCSIgnored(true) // explicitly configure to not rely on Symfony default
38
->ignoreDotFiles(Future::getV4OrV3(false, true))
+ ->ignoreVCS(true) // explicitly configure to not rely on Symfony default
39
40
}
41
0 commit comments