Skip to content

Instantly share code, notes, and snippets.

@pylebecq
Created July 29, 2015 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pylebecq/a35f68f076e501f99e99 to your computer and use it in GitHub Desktop.
Save pylebecq/a35f68f076e501f99e99 to your computer and use it in GitHub Desktop.
My PHP CS Fixer config file
<?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