Skip to content

Commit

Permalink
Added PHP-CS-Fixer configuration file
Browse files Browse the repository at this point in the history
  • Loading branch information
boekkooi committed Mar 31, 2016
1 parent b3697f4 commit 3b4fb25
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .php_cs
@@ -0,0 +1,12 @@
<?php
// PHP Coding Standards Fixer
// For more information see https://github.com/FriendsOfPHP/PHP-CS-Fixer

$finder = Symfony\CS\Finder\DefaultFinder::create()
->in(__DIR__ . '/src')
;

return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
->finder($finder)
;

0 comments on commit 3b4fb25

Please sign in to comment.