Add PHP CS Fixer tool

- Add executable in `util`
- Add config file for a project-wide run of the fixer
pull/2841/head
Hypolite Petovan 2016-10-03 08:50:31 -04:00
rodzic 50b07cb46a
commit 077f69d00d
2 zmienionych plików z 16 dodań i 0 usunięć

16
.php_cs 100644
Wyświetl plik

@ -0,0 +1,16 @@
<?php
$finder = Symfony\CS\Finder\DefaultFinder::create()
->exclude('doc')
->exclude('images')
->exclude('js')
->exclude('library')
->exclude('mods')
->exclude('spec')
->in(__DIR__)
;
return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
->finder($finder)
;

BIN
php-cs-fixer.phar 100644

Plik binarny nie jest wyświetlany.