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 9477b8c commit af35f0fCopy full SHA for af35f0f
.php_cs
@@ -8,6 +8,7 @@ $finder = PhpCsFixer\Finder::create()
8
return PhpCsFixer\Config::create()
9
->setRules([
10
'@Symfony' => true,
11
+ '@PSR12' => true,
12
'array_syntax' => ['syntax' => 'short'],
13
'binary_operator_spaces' => ['default' => null, 'operators' => ['=>' => 'align']],
14
'concat_space' => ['spacing' => 'one'],
@@ -26,6 +27,7 @@ return PhpCsFixer\Config::create()
26
27
'phpdoc_summary' => false,
28
'self_accessor' => true,
29
'single_line_throw' => false,
30
+ 'visibility_required' => ['property', 'method'], // removed 'const' since we still support PHP 7.0 for now
31
'yoda_style' => null,
32
])
33
->setFinder($finder)
0 commit comments