Skip to content

Commit fe62457

Browse files
committed
[update] Code style update
1 parent 8d894c8 commit fe62457

16 files changed

+346
-188
lines changed

.php_cs.dist

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
return PhpCsFixer\Config::create()
44
->setRules([
55
'@PSR2' => true,
6+
'@PSR12' => true,
67
'array_syntax' => ['syntax' => 'short']
78
])
89
->setFinder(
9-
PhpCsFixer\Finder::create()->in(__DIR__ . '/src')
10+
PhpCsFixer\Finder::create()
11+
->in(__DIR__ . '/src')
12+
->in(__DIR__ . '/tests')
1013
)
1114
;

0 commit comments

Comments
 (0)