mirror of
https://github.com/danog/process.git
synced 2024-11-27 04:35:02 +01:00
d2da56638f
Also removing status() again
15 lines
282 B
PHP
15 lines
282 B
PHP
<?php
|
|
|
|
return Symfony\CS\Config\Config::create()
|
|
->level(Symfony\CS\FixerInterface::NONE_LEVEL)
|
|
->fixers([
|
|
"psr2",
|
|
"-braces",
|
|
"-psr0",
|
|
])
|
|
->finder(
|
|
Symfony\CS\Finder\DefaultFinder::create()
|
|
->in(__DIR__)
|
|
->exclude(__DIR__."/vendor")
|
|
)
|
|
; |