Query/.php_cs

10 lines
298 B
Plaintext
Raw Normal View History

2012-07-17 14:45:52 -04:00
<?php
$finder = Symfony\CS\Finder\DefaultFinder::create()
->exclude(__DIR__.'/tests/simpletest/')
->in(__DIR__);
return Symfony\CS\Config\Config::create()
->fixers(array('linefeed','short_tag','trailing_spaces','php_closing_tag','return','visibility','include','elseif'))
->finder($finder);