Files
kupshop/.php-cs-fixer.config.php
2025-08-02 16:30:27 +02:00

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,
]
);