Skip to content

Instantly share code, notes, and snippets.

@jeroenvdgulik
Created October 19, 2015 11:06
Show Gist options
  • Save jeroenvdgulik/6d9f96e7e590a2594d5f to your computer and use it in GitHub Desktop.
Save jeroenvdgulik/6d9f96e7e590a2594d5f to your computer and use it in GitHub Desktop.
<?php
$finder = Symfony\CS\Finder\DefaultFinder::create()
->files()
->name('*.php')
->in(__DIR__.'/src')
;
return Symfony\CS\Config\Config::create()
->fixers(array(
'logical_not_operators_with_spaces', 'phpdoc_order', 'newline_after_open_tag', 'concat_with_spaces'
))
->finder($finder)
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment