forked from thephpleague/flysystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php_cs
31 lines (30 loc) · 841 Bytes
/
.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
<?php
return Symfony\CS\Config\Config::create()
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
->fixers([
'phpdoc_params',
'phpdoc_indent',
'phpdoc_no_access',
'phpdoc_no_package',
'phpdoc_params',
'phpdoc_scalar',
'phpdoc_separation',
'phpdoc_short_description',
'phpdoc_to_comment',
'phpdoc_trim',
'phpdoc_type_to_var',
'operators_spaces',
'ordered_use',
'short_array_syntax',
'return',
'spaces_before_semicolon',
'spaces_cast',
'ternary_spaces',
'eof_ending',
'logical_not_operators_with_spaces',
'concat_with_spaces',
])
->finder(Symfony\CS\Finder\DefaultFinder::create()
->in(__DIR__.'/src')
->in(__DIR__.'/tests')
->in(__DIR__.'/stub'));