forked from laupiFrpar/LopiPusherBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.php-cs-fixer.dist.php
More file actions
34 lines (30 loc) · 906 Bytes
/
.php-cs-fixer.dist.php
File metadata and controls
34 lines (30 loc) · 906 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
30
31
32
33
34
<?php
/*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
if (!file_exists(__DIR__.'/src') || !file_exists(__DIR__.'/tests')) {
exit(0);
}
$finder = (new \PhpCsFixer\Finder())
->in([__DIR__.'/src', __DIR__.'/tests'])
;
return (new \PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'@PHPUnit75Migration:risky' => true,
'array_syntax' => ['syntax' => 'short'],
'protected_to_private' => false,
'semicolon_after_instruction' => false,
'phpdoc_to_comment' => false,
'header_comment' => [
'header' => <<<EOF
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
EOF
],
])
->setRiskyAllowed(true)
->setFinder($finder)
;