1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/.php_cs

16 lines
287 B
Plaintext
Raw Normal View History

2015-07-11 03:59:39 +02:00
<?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__ . "/test")
)
;