update .php_cs file - set dir to check

This commit is contained in:
Dariusz Rumiński
2014-12-27 22:12:11 +01:00
parent f4f77a7882
commit c81138f6ac
+1 -3
View File
@@ -10,9 +10,7 @@ $config = Config::create()
->setUsingLinter(false); ->setUsingLinter(false);
$finder = $config->getFinder() $finder = $config->getFinder()
->in('bin') ->in(__DIR__);
->in('src')
->in('test');
// exclude file due to error on PHP 5.3 that ignore content after __halt_compiler when using token_get_all // exclude file due to error on PHP 5.3 that ignore content after __halt_compiler when using token_get_all
if (version_compare(PHP_VERSION, '5.4', '<')) { if (version_compare(PHP_VERSION, '5.4', '<')) {