radarrplexorganizrnginxsonarrdashboardhtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelanding
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
484 B
15 lines
484 B
<?php
|
|
|
|
return PhpCsFixer\Config::create()
|
|
->setRules(array(
|
|
'@Symfony' => true,
|
|
'@Symfony:risky' => true,
|
|
'array_syntax' => array('syntax' => 'long'),
|
|
'no_unreachable_default_argument_value' => false,
|
|
'braces' => array('allow_single_line_closure' => true),
|
|
'heredoc_to_nowdoc' => false,
|
|
'phpdoc_annotation_without_dot' => false,
|
|
))
|
|
->setRiskyAllowed(true)
|
|
->setFinder(PhpCsFixer\Finder::create()->in(__DIR__))
|
|
;
|
|
|