-
Notifications
You must be signed in to change notification settings - Fork 0
/
.phpspec_cs
46 lines (41 loc) · 1.55 KB
/
.phpspec_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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/*
* This file is part of the BenGorUser package.
*
* (c) Beñat Espiña <benatespina@gmail.com>
* (c) Gorka Laucirica <gorka.lauzirika@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
$header = <<<'EOF'
This file is part of the BenGorUser package.
(c) Beñat Espiña <benatespina@gmail.com>
(c) Gorka Laucirica <gorka.lauzirika@gmail.com>
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
EOF;
return PhpCsFixer\Config::create()
->setRiskyAllowed(true)
->setFinder(
PhpCsFixer\Finder::create()
->in(__DIR__ . '/spec')
)
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'binary_operator_spaces' => [
'align_double_arrow' => true,
],
'concat_space' => ['spacing' => 'one'],
'header_comment' => [
'header' => $header,
'commentType' => PhpCsFixer\Fixer\Comment\HeaderCommentFixer::HEADER_COMMENT,
],
'no_unreachable_default_argument_value' => false,
'ordered_imports' => true,
'phpdoc_order' => true,
'phpdoc_annotation_without_dot' => false,
'strict_param' => true,
'visibility_required' => false,
]);