forked from fossar/selfoss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.php_cs
29 lines (26 loc) · 827 Bytes
/
.php_cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('libs')
->exclude('utils')
->in(__DIR__)
->name('*.phtml');
$rules = [
'@Symfony' => true,
// why would anyone put braces on different line
'braces' => ['position_after_functions_and_oop_constructs' => 'same'],
'function_declaration' => ['closure_function_spacing' => 'none'],
// overwrite some Symfony rules
'concat_space' => ['spacing' => 'one'],
'phpdoc_align' => false,
'phpdoc_no_empty_return' => false,
'phpdoc_summary' => false,
'trailing_comma_in_multiline_array' => false,
// additional rules
'array_syntax' => ['syntax' => 'short'],
'psr4' => true,
'phpdoc_order' => true,
];
return PhpCsFixer\Config::create()
->setRules($rules)
->setRiskyAllowed(true)
->setFinder($finder);