12 lines
174 B
Plaintext
12 lines
174 B
Plaintext
|
|
<?php
|
||
|
|
|
||
|
|
return PhpCsFixer\Config::create()
|
||
|
|
->setRules([
|
||
|
|
'@PSR1' => true,
|
||
|
|
])
|
||
|
|
->setFinder(
|
||
|
|
PhpCsFixer\Finder::create()
|
||
|
|
->in(__DIR__)
|
||
|
|
)
|
||
|
|
;
|