Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.php_cs - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 767ad3781bfdf36f38ca8abdb248b82004d8e4df (plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php

$composerinfo          = json_decode(file_get_contents('composer.json'));
$version = $composerinfo->version;

$header = "PHPPgAdmin v$version.";

$rules=[
    '@PHP56Migration' => true,
    '@PHPUnit60Migration:risky' => true,
    '@PSR1'=>true,
    '@PSR2'=>true,
    '@Symfony' => true,
    '@Symfony:risky' => false,
    'align_multiline_comment' => true,
    'align_double_arrow' => true,
    'align_equals' => true,
    'array_syntax' => ['syntax' => 'short'],
    'blank_line_before_statement' => true,
    'blank_line_after_namespace'=>false,
    'blank_line_after_opening_tag'=>false,
    'blank_line_before_break'=>false,
    'blank_line_before_continue'=>false,
    'blank_line_before_declare'=>false,
    'blank_line_before_return'=>false,
    'blank_line_before_throw'=>false,
    'blank_line_before_try'=>false,
    'combine_consecutive_issets' => true,
    'combine_consecutive_unsets' => true,
    'compact_nullable_typehint' => true,
    'elseif'=>true,
    'escape_implicit_backslashes' => true,
    'explicit_indirect_variable' => true,
    'explicit_string_variable' => true,
    'final_internal_class' => true,
    'header_comment' => ['commentType'=>'PHPDoc','header' => $header],
    'heredoc_to_nowdoc' => true,
    'list_syntax' => ['syntax' => 'long'],
    'method_argument_space' => ['ensure_fully_multiline' => true],
    'method_chaining_indentation' => true,
    'modernize_types_casting'=>true,
    'multiline_comment_opening_closing' => true,
    'no_null_property_initialization' => true,
    'no_php4_constructor'=>true,
    'no_short_echo_tag' => true,
    'no_superfluous_elseif' => true,
    'no_unneeded_curly_braces' => true,
    'no_unneeded_final_method' => true,
    'no_unreachable_default_argument_value' => true,
    'no_unused_imports'=>true,
    'no_useless_else' => true,
    'no_useless_return' => true,
    'no_whitespace_in_blank_line'=> true,
    'ordered_class_elements' => false,
    'ordered_imports' => true,
    'php_unit_strict' => true,
    'php_unit_test_annotation' => true,
    'php_unit_test_class_requires_covers' => true,
    'phpdoc_add_missing_param_annotation' => true,
    'phpdoc_align'=>true,
    'phpdoc_no_package' => false,
    'phpdoc_order' => true,
    'phpdoc_scalar'=>true,
    'phpdoc_separation'=>true,
    'phpdoc_trim'=>true,
    'phpdoc_types_order' => true,
    'semicolon_after_instruction' => true,
    'single_line_comment_style' => false,
    'single_quote'=>true,
    'strict_comparison' => false,
    'strict_param' => true,
    'yoda_style' => false,
    'no_extra_blank_lines' => [
        'tokens' => 
            [
                'if',
                'break', 
                'case', 
                'continue', 
                'curly_brace_block',
                'default', 'extra', 
                'parenthesis_brace_block', 
                'return', 
                'square_brace_block', 
                'switch', 
                'throw', 
                'use', 
                'useTrait', 
                'use_trait'
            ]
    ],
     
        'binary_operator_spaces' => [
            'align_double_arrow' => true,
            'align_equals' => true
        ]

];
        
$config = PhpCsFixer\Config::create()
    ->setRiskyAllowed(true)
    ->setRules($rules)
    ->setFinder(
        PhpCsFixer\Finder::create()
            ->in(__DIR__.'/src/classes')
            ->in(__DIR__.'/src/middleware')
            ->in(__DIR__.'/src/controllers')
            ->in(__DIR__.'/src/database')
            ->in(__DIR__.'/src/decorators')
            ->in(__DIR__.'/src/help')
            ->in(__DIR__.'/src/translations')
            ->in(__DIR__.'/src/xhtml')
            ->in(__DIR__.'/src/traits')
            ->in(__DIR__.'/src/database/databasetraits')
            ->in(__DIR__.'/tests')
            
    );

// special handling of fabbot.io service if it's using too old PHP CS Fixer version
try {
    PhpCsFixer\FixerFactory::create()
        ->registerBuiltInFixers()
        ->registerCustomFixers($config->getCustomFixers())
        ->useRuleSet(new PhpCsFixer\RuleSet($config->getRules()));
} catch (PhpCsFixer\ConfigurationException\InvalidConfigurationException $e) {
    $config->setRules([]);
} catch (UnexpectedValueException $e) {
    $config->setRules([]);
} catch (InvalidArgumentException $e) {
    $config->setRules([]);
}        
        
return $config;