Created
November 2, 2016 22:06
-
-
Save simshaun/632830faf8524179582a7a1d2c6f2f3d to your computer and use it in GitHub Desktop.
.php_cs used in my Symfony projects
This file contains 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 = PhpCsFixer\Finder::create() | |
->in(__DIR__.'/backend/src') | |
->in(__DIR__.'/backend/tests'); | |
return PhpCsFixer\Config::create() | |
->finder($finder); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment