mirror of
https://github.com/danog/process.git
synced 2024-11-26 20:24:43 +01:00
15 lines
287 B
PHP
15 lines
287 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__ . "/lib")
|
|
->in(__DIR__ . "/tests")
|
|
)
|
|
; |