Skip to content

Commit bbf48f3

Browse files
committed
Updated php-cs-fixer config
1 parent 99f88a6 commit bbf48f3

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.php_cs.dist

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,14 @@
33
return PhpCsFixer\Config::create()
44
->setRules([
55
'@PSR2' => true,
6-
'single_blank_line_before_namespace' => true,
7-
'concat_space' => ['spacing' => 'one'],
8-
'single_quote' => true,
9-
'braces' => true,
6+
'@Symfony' => true,
7+
'@Symfony:risky' => true,
8+
'@PHPUnit60Migration:risky' => true
109
])
11-
1210
->setFinder(
1311
PhpCsFixer\Finder::create()
1412
->exclude('vendor')
1513
->exclude('docs')
1614
->in(__DIR__)
1715
)
18-
1916
->setRiskyAllowed(true);
20-

0 commit comments

Comments
 (0)