Last active
August 29, 2015 14:05
-
-
Save chrisyue/9e1176cd1ef5b5697cef to your computer and use it in GitHub Desktop.
php-cs-fixer config for Symfony2 project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$finder = Symfony\CS\Finder\DefaultFinder::create() | |
->in('src') | |
->in('app/config') | |
->in('app/Resources') | |
; | |
return Symfony\CS\Config\Config::create() | |
->setUsingCache(true) | |
->fixers(['-phpdoc_short_description', 'ordered_use']) | |
->finder($finder) | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment