Skip to content

Commit ead3cda

Browse files
committed
Fix coding style
1 parent 7965a89 commit ead3cda

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.php_cs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
$finder = PhpCsFixer\Finder::create()
44
->exclude('_helpers')
55
->exclude('_temp')
6-
->in(__DIR__)
7-
;
6+
->in(__DIR__);
87

98
return PhpCsFixer\Config::create()
10-
->setRules(array(
9+
->setRules([
1110
'@Symfony' => true,
1211
'combine_consecutive_unsets' => true,
1312
'linebreak_after_opening_tag' => true,
@@ -17,6 +16,5 @@ return PhpCsFixer\Config::create()
1716
'ordered_imports' => true,
1817
'phpdoc_order' => true,
1918
'short_array_syntax' => true,
20-
))
21-
->finder($finder)
22-
;
19+
])
20+
->finder($finder);

0 commit comments

Comments
 (0)