-
Notifications
You must be signed in to change notification settings - Fork 338
Expand file tree
/
Copy path.php-cs-fixer.dist.php
More file actions
33 lines (28 loc) · 825 Bytes
/
Copy path.php-cs-fixer.dist.php
File metadata and controls
33 lines (28 loc) · 825 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
<?php
$header = <<<'EOF'
This file is part of the MopaBootstrapBundle.
(c) Philipp A. Mohrenweiser <phiamo@googlemail.com>
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
EOF;
$finder = PhpCsFixer\Finder::create()
->exclude([
'vendor',
])
->in(__DIR__)
;
return ($config = new PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
'array_syntax' => ['syntax' => 'short'],
'header_comment' => ['header' => $header],
'full_opening_tag' => false,
'list_syntax' => ['syntax' => 'short'],
'native_constant_invocation' => true,
'native_function_invocation' => [
'include' => ['@all'],
],
'yoda_style' => false,
])
->setFinder($finder)
;