-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php_cs
41 lines (37 loc) · 1.23 KB
/
.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
30
31
32
33
34
35
36
37
38
39
40
41
<?php
$header = <<<'EOF'
This file is part of bhittani/dispenser.
(c) Kamal Khan <[email protected]>
This source file is subject to the MIT license that
is bundled with this source code in the file LICENSE.
EOF;
return PhpCsFixer\Config::create()
->setRules([
'@PSR2' => true,
'@Symfony' => true,
'array_syntax' => ['syntax' => 'short'],
'combine_consecutive_unsets' => true,
'header_comment' => ['header' => $header],
'heredoc_to_nowdoc' => true,
'no_extra_consecutive_blank_lines' => [
'break',
'continue',
'extra',
'return',
'throw',
'use',
'parenthesis_brace_block',
'square_brace_block',
'curly_brace_block'
],
'not_operator_with_successor_space' => true,
'no_short_echo_tag' => true,
'no_useless_else' => true,
'no_useless_return' => true,
'ordered_class_elements' => true,
'ordered_imports' => ['sortAlgorithm' => 'length'],
'phpdoc_add_missing_param_annotation' => true,
'phpdoc_order' => true,
'single_line_after_imports' => true,
])->setFinder(PhpCsFixer\Finder::create()->in(__DIR__ . '/src'))
;