-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php-cs-fixer.php
31 lines (29 loc) · 1.27 KB
/
.php-cs-fixer.php
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
$finder = PhpCsFixer\Finder::create()->in(__DIR__ . '/src');
return (new PhpCsFixer\Config)
->setRules([
'@PSR2' => true,
'blank_line_after_opening_tag' => true,
'braces' => ['allow_single_line_anonymous_class_with_empty_body' => true],
'compact_nullable_typehint' => true,
'declare_equal_normalize' => true,
'lowercase_cast' => true,
'lowercase_static_reference' => true,
'new_with_braces' => true,
'no_blank_lines_after_class_opening' => true,
'no_leading_import_slash' => true,
'no_whitespace_in_blank_line' => true,
'ordered_class_elements' => ['order' => ['use_trait']],
'ordered_imports' => ['imports_order' => ['class', 'function', 'const'], 'sort_algorithm' => 'none'],
'return_type_declaration' => true,
'short_scalar_cast' => true,
'single_blank_line_before_namespace' => true,
'single_trait_insert_per_statement' => true,
'ternary_operator_spaces' => true,
'visibility_required' => ['elements' => ['const', 'method', 'property']],
'array_syntax' => ['syntax' => 'short'],
'cast_spaces' => true,
'trailing_comma_in_multiline' => false,
'no_unused_imports' => true
])
->setFinder($finder);