We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fe5b42 commit a3cda50Copy full SHA for a3cda50
.php-cs-fixer.php
@@ -2,6 +2,7 @@
2
3
use PhpCsFixer\Config;
4
use PhpCsFixer\Finder;
5
+use PhpCsFixer\Runner\Parallel\ParallelConfigFactory;
6
7
$finder = Finder::create()
8
->in([__DIR__, __DIR__ . DIRECTORY_SEPARATOR . 'tests']);
@@ -22,5 +23,6 @@
22
23
$config = new Config();
24
25
return $config->setRules($rules)
26
+ ->setParallelConfig(ParallelConfigFactory::detect())
27
->setFinder($finder)
28
->setCacheFile($cacheDir . '/.php-cs-fixer.cache');
0 commit comments