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 928b747 commit f263409Copy full SHA for f263409
.php_cs
@@ -6,6 +6,9 @@ $finder = PhpCsFixer\Finder::create()
6
->exclude('var')
7
->exclude('vendor')
8
->notPath('web/config.php')
9
+ // Doctrine fixtures are excluded to avoid these PHP-CS-Fixer errors:
10
+ // "Files were not fixed due to errors reported during linting before fixing"
11
+ ->notPath('DataFixtures')
12
;
13
14
return PhpCsFixer\Config::create()
0 commit comments