Преглед изворни кода

update .php_cs file - set dir to check

Dariusz Rumiński пре 11 година
родитељ
комит
c81138f6ac
1 измењених фајлова са 1 додато и 3 уклоњено
  1. 1 3
      .php_cs

+ 1 - 3
.php_cs

@@ -10,9 +10,7 @@ $config = Config::create()
     ->setUsingLinter(false);
 
 $finder = $config->getFinder()
-    ->in('bin')
-    ->in('src')
-    ->in('test');
+    ->in(__DIR__);
 
 // 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', '<')) {