dBug/.php_cs
2014-04-17 00:30:33 +04:00

16 lines
335 B
PHP

<?php
$finder = Symfony\CS\Finder\DefaultFinder::create()
->notName('LICENSE.txt')
->notName('README.md')
->notName('dBug.doxyfile')
->notName('composer.*')
->exclude('vendor')
->in(__DIR__)
;
return Symfony\CS\Config\Config::create()
->fixers(array('-indentation','-braces','-psr0','-controls_spaces'))
->finder($finder)
;