We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c100e9e commit 0e7b5f6Copy full SHA for 0e7b5f6
fix.php
@@ -119,6 +119,7 @@
119
. ' --extensions=php,phpt'
120
. ' --runtime-set ignore_warnings_on_exit true'
121
. ' --no-cache'
122
+ . ' --parallel=10'
123
. ' --standard=' . escapeshellarg($presetFile)
124
. ' --file-list=' . escapeshellarg($fileList),
125
$code
preset-fixer/base.php
@@ -15,6 +15,7 @@
15
new NetteCodingStandard\Fixer\FunctionNotation\MethodArgumentSpaceFixer,
16
new NetteCodingStandard\Fixer\FunctionNotation\FunctionDeclarationFixer,
17
]);
18
+$config->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect());
19
$config->registerCustomFixers(new PhpCsFixerCustomFixers\Fixers);
20
$config->setUsingCache(false);
21
$config->setIndent("\t");
0 commit comments