Skip to content
This repository has been archived by the owner on May 30, 2019. It is now read-only.

Commit

Permalink
CS fixer config
Browse files Browse the repository at this point in the history
  • Loading branch information
rogergros committed Mar 24, 2015
1 parent 92c4017 commit 09e6742
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php

return Symfony\CS\Config\Config::create()
// use SYMFONY_LEVEL:
->level(Symfony\CS\FixerInterface::SYMFONY_LEVEL)
// and extra fixers:
->fixers(array(
'concat_with_spaces',
'multiline_spaces_before_semicolon',
'short_array_syntax'
))
->finder(
Symfony\CS\Finder\DefaultFinder::create()
->in('src/')
)
;

0 comments on commit 09e6742

Please sign in to comment.