Created
July 29, 2015 13:05
-
-
Save pylebecq/a35f68f076e501f99e99 to your computer and use it in GitHub Desktop.
My PHP CS Fixer config file
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() | |
->exclude(['vendor', 'storage']) | |
->in(__DIR__) | |
; | |
return Symfony\CS\Config\Config::create() | |
->fixers([ | |
'align_double_arrow', | |
'align_equals', | |
'ordered_use', | |
'short_array_syntax', | |
]) | |
->finder($finder) | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment