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
| <?php
require __DIR__ . '/vendor/autoload.php';
use PhpCsFixer\Config;
use PhpCsFixer\Finder;
$finder = Finder::create()->in(__DIR__ . '/src');
return Config::create()
->setRiskyAllowed(true)
->setCacheFile(__DIR__ . '/.php_cs.cache')
->setRules([
'@PSR2' => true, // 使用 PSR2 标准
'array_syntax' => [
'syntax' => 'short', // 数组使用短语法
],
'binary_operator_spaces' => [
'align_double_arrow' => false, // 不对齐双箭头操作符
'align_equals' => false, // 不对齐赋值操作符
],
'blank_line_after_namespace' => true, // 命名空间之后有一个空行
'blank_line_after_opening_tag' => true, // PHP 打开标记之后有一个空行
'blank_line_before_return' => true, // return 语句之前有一个空行
'blank_line_before_statement' => [
'statements' => [
'break',
'continue',
'declare',
'return',
'throw',
'try',
], // 这些声明之前有一个空行
],
'class_attributes_separation' => [
'elements' => [
'const',
'method',
'property',
], // 类的这些元素分开,也就是元素之间加上空行
],
'dir_constant' => true, // 将 dirname(__FILE__) 替换成 __DIR__
'include' => true, // 将 include('a.php') 替换成 include 'a.php'
'is_null' => true, // 将 is_null($a) 替换成 null === $a
'linebreak_after_opening_tag' => true,
'list_syntax' => [
'syntax' => 'long', // list 使用 long 语法
],
'lowercase_constants' => true, // 常量 true, false, null 使用小写
'lowercase_keywords' => true, // PHP 关键字使用小写
'method_chaining_indentation' => true, // 方法链式调用不需要缩进
'modernize_types_casting' => true, // 将 *val 函数做对应类型的强制转换
'new_with_braces' => true, // 实例化类时带上括号
'no_blank_lines_after_class_opening' => true, // 类左大括号后没有空行
'no_blank_lines_before_namespace' => false, // 命名空间之前没有穿行
'no_closing_tag' => true, // 纯 PHP 文件不需要闭合标记
'no_multiline_whitespace_around_double_arrow' => true, // 箭头操作符前后没有多余的空格
'multiline_whitespace_before_semicolons' => true, // 移除结束分号之前的多余空行
'no_null_property_initialization' => true, // 移除属性用 null 初始化是的显式指定
'no_php4_constructor' => true, // 移除 PHP4 风格的构造方法
'no_short_bool_cast' => true, // 采用双感叹号表示布尔情况的不应该使用,会转换为 (bool)
'no_short_echo_tag' => false, // 替换短标记输出为长标记
'no_singleline_whitespace_before_semicolons' => true, // 移除分号之前的多余空格
'no_spaces_after_function_name' => true, // 在进行方法或函数调用时,移除方法或函数名称与左括号之间的空格
'no_spaces_around_offset' => true, // 移除偏移大括号的空格
'no_spaces_inside_parenthesis' => true, // 移除左括号后的和右括号前的多余空格
'no_superfluous_elseif' => true, // 用 if 替换多余的 elseif
'no_trailing_whitespace' => true, // 移除末行的尾随空格
'no_trailing_whitespace_in_comment' => true, // 移除注释末行的尾随空格
'no_unneeded_control_parentheses' => [
'statements' => [
'break',
'clone',
'continue',
'echo_print',
'return',
'switch_case',
'yield',
], // 移除控制语句周围不需要的括号
],
'no_useless_return' => true, // 将 return; 替换成空
'no_whitespace_in_blank_line' => true, // 移除空白行末尾的空格
'not_operator_with_space' => false, // 逻辑非操作符前后有一个空格
'not_operator_with_successor_space' => true, // 逻辑非操作符尾随一个空格
'object_operator_without_whitespace' => true, // 移除对象操作符前后的空格
'short_scalar_cast' => true, // 标量使用缩写
'single_blank_line_at_eof' => true, // 纯 PHP 文件总是以一个空行换行符结束
'single_blank_line_before_namespace' => true, // 命名空间之前有一个空行
'single_class_element_per_statement' => [
'elements' => [
'const',
'property',
], // 类元素的每个声明有自己的关键字
],
'single_import_per_statement' => true, // 导入的每个声明有自己的关键字
'single_line_after_imports' => true, // 每个命名空间的 use 独占一行,最后一个 use 后有一个空行
'single_quote' => true, // 简单字符串的双引号转换为单引号
'standardize_not_equals' => true, // 将 <> 替换为 !=
'strict_comparison' => true, // 比较使用严格化
'strict_param' => true, // 参数使用严格化
'switch_case_space' => true, // 移除冒号和 case value 之间的多余空格
'ternary_operator_spaces' => true, // 移除三元运算符周围多余的空格
'ternary_to_null_coalescing' => true, // 使用 null 合并运算符 ?? 在可以的地方
'trailing_comma_in_multiline_array' => true, // 多个数组元素的最后一个元素后有一个逗号
'trim_array_spaces' => true, // 移除数组首尾元素多余的空格
'unary_operator_spaces' => true, // 一元操作符紧挨操作项,不需要空格分开
'visibility_required' => true, // 访问修饰符放置在属性方法前,abstract 和 final 放置在访问修饰符前面,static 放置在访问修饰符后
'whitespace_after_comma_in_array' => true, // 数组的每个元素逗号后面有一个空格
])
->setFinder($finder);
|