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 9343ba3 commit 58eee57Copy full SHA for 58eee57
1 file changed
php_cs.php.dist
@@ -6,8 +6,8 @@ $finder = PhpCsFixer\Finder::create()
6
->in(__DIR__)
7
;
8
9
-return PhpCsFixer\Config::create()
10
- ->setRules([
+$config = new PhpCsFixer\Config();
+return $config->setRules([
11
'align_multiline_comment' => [
12
'comment_type' => 'phpdocs_only'
13
],
@@ -54,7 +54,7 @@ return PhpCsFixer\Config::create()
54
'sort_algorithm' => 'alpha'
55
56
'ordered_class_elements' => [
57
- 'sortAlgorithm' => 'alpha',
+ 'sort_algorithm' => 'alpha',
58
'order' => [
59
'constant_public',
60
'constant_protected',
0 commit comments