16 lines
472 B
PHP
16 lines
472 B
PHP
<?php
|
|
|
|
return (new PhpCsFixer\Config())
|
|
->setParallelConfig(new PhpCsFixer\Runner\Parallel\ParallelConfig(4))
|
|
->setRules(
|
|
[
|
|
'@Symfony' => true,
|
|
'phpdoc_no_access' => false, // Destroys Restler API
|
|
'yoda_style' => false,
|
|
'increment_style' => false,
|
|
'single_line_throw' => false,
|
|
'explicit_string_variable' => true,
|
|
'fully_qualified_strict_types' => false,
|
|
]
|
|
);
|