-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.php_cs
More file actions
29 lines (24 loc) · 720 Bytes
/
.php_cs
File metadata and controls
29 lines (24 loc) · 720 Bytes
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
$header = <<<'EOF'
This file is a part of MaintenanceBundle a touchdesign project.
(c) %s Christin Gruber
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
EOF;
$finder = PhpCsFixer\Finder::create()
->in(__DIR__.'/src')
;
return PhpCsFixer\Config::create()
->setRules(array(
'@Symfony' => true,
'@Symfony:risky' => true,
'array_syntax' => ['syntax' => 'short'],
'protected_to_private' => false,
'semicolon_after_instruction' => false,
'header_comment' => [
'header' => sprintf($header, date('Y')),
]
))
->setRiskyAllowed(true)
->setFinder($finder)
;