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
| <?php
return (new PhpCsFixer\Config()) ->setRiskyAllowed(true) ->setRules([ // 引用的规则集 '@PSR2' => true, '@Symfony' => true, '@DoctrineAnnotation' => true, '@PhpCsFixer' => true, // 使用短语法定义数组 e.g. [1, 2, 3] 'array_syntax' => [ 'syntax' => 'short' ], // 使用短语法解构数组 e.g. [a, b, c] => [$a, $b, $c] 'list_syntax' => [ 'syntax' => 'short' ], // 字符串拼接应配置间隔符 'concat_space' => [ 'spacing' => 'one' ], // 关键字语句都应有空格间隔, 可配置关键字列表 ['break', 'case', 'continue', 'declare', 'default', 'do', 'exit', 'for', 'foreach', 'goto', 'if', 'include', 'include_once', 'phpdoc', 'require', 'require_once', 'return', 'switch', 'throw', 'try', 'while', 'yield', 'yield_from'] 'blank_line_before_statement' => [ 'statements' => [ 'declare', ], ], // PHPDoc 注释中移除 author 标签, 标签可定义 'general_phpdoc_annotation_remove' => [ 'annotations' => [ 'author' ], ], // 只有一行实际内容的单行注释和多行注释应使用语法 'single_line_comment_style' => [ 'comment_types' => [ ], ], // yoda 语法 'yoda_style' => [ 'always_move_variable' => false, 'equal' => false, 'identical' => false, ], // PHPDoc 对齐设置 'phpdoc_align' => [ 'align' => 'left', ], // 禁止在结束分号前使用多行空格,或将分号移到新行以进行链接调用,移除多行空格 'multiline_whitespace_before_semicolons' => [ 'strategy' => 'no_multi_line', ], // 禁止大写的常量 'constant_case' => [ 'case' => 'lower', ], // 类、trait和interface必须用一个空行或没有空行分隔 'class_attributes_separation' => true, // 移除连续的 unset 'combine_consecutive_unsets' => true, // 声明严格类型 'declare_strict_types' => true, // 确保没有代码与 PHP open 标记在同一行。 'linebreak_after_opening_tag' => true, // 确保静态引用使用小写 'lowercase_static_reference' => true, // 移除无用的 else 'no_useless_else' => true, // 移除无用的 imports 'no_unused_imports' => true, // 非后必须有空格 if(!false) => if(! false) 'not_operator_with_successor_space' => true, 'not_operator_with_space' => false, 'ordered_class_elements' => true, 'ordered_imports' => [ 'imports_order' => [ 'class', 'function', 'const', ], 'sort_algorithm' => 'alpha', ], 'php_unit_strict' => false, 'phpdoc_separation' => false, 'single_quote' => true, 'standardize_not_equals' => true, 'multiline_comment_opening_closing' => true, ]) ->setFinder( PhpCsFixer\Finder::create() // 排除的目录 ->exclude('public') ->exclude('runtime') ->exclude('vendor') ->in(__DIR__) ) ->setUsingCache(true);
|