forked from fastbill/fastbill-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php-cs
77 lines (73 loc) · 2.6 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
$blacklistedFiles = [
];
$finder = PhpCsFixer\Finder::create()
->in(__DIR__ . '/examples')
->in(__DIR__ . '/src')
->in(__DIR__ . '/tests')
->filter(function(SplFileInfo $file) use ($blacklistedFiles) {
return !in_array($file->getFilename(), $blacklistedFiles, true);
})
;
return PhpCsFixer\Config::create()
->setRules([
'@PSR2' => true,
'single_blank_line_before_namespace' => true,
'function_typehint_space' => true,
'declare_strict_types' => true,
'function_declaration' => true,
'no_spaces_after_function_name' => true,
'no_empty_phpdoc' => true,
'no_empty_comment' => true,
'no_useless_return' => true,
'no_trailing_whitespace' => true,
'no_trailing_whitespace_in_comment' => true,
'no_blank_lines_after_phpdoc' => true,
'ordered_imports' => true,
'php_unit_namespaced' => true,
'phpdoc_add_missing_param_annotation' => [
'only_untyped' => false
],
'phpdoc_no_empty_return' => true,
'phpdoc_order' => true,
'phpdoc_types' => true,
'phpdoc_scalar' => true,
'phpdoc_no_package' => true,
'phpdoc_single_line_var_spacing' => true,
'trailing_comma_in_multiline_array' => true,
'single_quote' => true,
'return_type_declaration' => [
'space_before' => 'none'
],
'method_separation' => true,
'no_blank_lines_after_class_opening' => true,
'phpdoc_return_self_reference' => true,
'phpdoc_trim' => true,
'phpdoc_var_without_name' => true,
'strict_comparison' => true,
'strict_param' => true,
'visibility_required' => true,
'blank_line_before_return' => true,
'cast_spaces' => true,
'class_definition' => array('singleLine' => true),
'no_unused_imports' => true,
'self_accessor' => true,
'whitespace_after_comma_in_array' => true,
'is_null' => true,
'space_after_semicolon' => true,
'semicolon_after_instruction' => true,
'no_singleline_whitespace_before_semicolons' => true,
'no_multiline_whitespace_before_semicolons' => true,
'concat_space' => [
'spacing' => 'one'
],
'standardize_not_equals' => true,
'ternary_operator_spaces' => true,
'no_leading_namespace_whitespace' => true,
'dir_constant' => true,
'no_useless_else' => true,
'native_function_casing' => true,
'no_multiline_whitespace_around_double_arrow' => true,
])
->setRiskyAllowed(true)
->setFinder($finder);