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 1de05ac commit 4cb784cCopy full SHA for 4cb784c
.php_cs renamed to .php-cs-fixer.dist.php
@@ -1,16 +1,16 @@
1
<?php
2
3
-$config = PhpCsFixer\Config::create()
+$config = (new PhpCsFixer\Config())
4
->setIndent(" ")
5
->setLineEnding("\n")
6
- ->setCacheFile(__DIR__ . '/.php_cs.cache')
+ ->setCacheFile(__DIR__ . '/.php-cs-fixer.cache')
7
->setRiskyAllowed(true)
8
->setRules([
9
'@PHP71Migration' => true,
10
'@PHP73Migration' => false,
11
'@PhpCsFixer' => true,
12
'@PhpCsFixer:risky' => true,
13
- '@PSR2' => true,
+ '@PSR12' => true,
14
'@Symfony' => true,
15
'@Symfony:risky' => true,
16
'align_multiline_comment' => true,
0 commit comments