mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-08 23:16:14 +01:00
Daniel Siepmann
8508d9ee1a
Enable the new option to speed things up. Keep comment from upstream code. Resolves: #1316
10 lines
329 B
PHP
10 lines
329 B
PHP
<?php
|
|
|
|
use PhpCsFixer\Runner\Parallel\ParallelConfigFactory;
|
|
use TYPO3\CodingStandards\CsFixerConfig;
|
|
|
|
$config = CsFixerConfig::create();
|
|
// @TODO 4.0 no need to call this manually
|
|
$config->setParallelConfig(ParallelConfigFactory::detect());
|
|
$config->getFinder()->in('Classes')->in('Configuration')->in('Tests');
|
|
return $config;
|