mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 06:56:13 +01:00
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;
|