* [(二)函数判断空格](https://ihavenolimitations.xyz/ide_team/phpstorm/891703#_19)
* [(三)行字数限制](https://ihavenolimitations.xyz/ide_team/phpstorm/891703#_31)
* [(四)`class`行尾](https://ihavenolimitations.xyz/ide_team/phpstorm/891703#class__43)
* [(五)默认参数放在最后](https://ihavenolimitations.xyz/ide_team/phpstorm/891703#_59)
* [(六)开口位置](https://ihavenolimitations.xyz/ide_team/phpstorm/891703#_74)
* [(七) 参数有空格](https://ihavenolimitations.xyz/ide_team/phpstorm/891703#__89)
* [(八)依赖注入](https://ihavenolimitations.xyz/ide_team/phpstorm/891703#_97)
#(一)函数中的逗号问题
英文:`no space found after comma in function all`
中文:`在函数的逗号后面找不到空格`
错误:

正确:
> 函数中间多了一个逗号

# (二)函数判断空格
英文:`there must be a single space between the closing parenthesis and the opening brace of a multi-line IF statement;found 0 spaces`
中文:`在一个多行if语句的结束括号和开括号之间必须有一个空格;找到0个空格。`
错误:

正确:

# (三)行字数限制
英文:`line exceeds 85 characters;contains 89 characters`
中文:`行超过85个字符;包含89个字符`
错误:

解决方法:暂无
# (四)`class`行尾
1、换行符
英文:`expected 1 newline at end of file`
中文:`预计在文件结尾处有1个换行符`
2、多一行
错误:

正确:

# (五)默认参数放在最后
英文:
`phpcs:Arguments with default values must be at the end of the argument list`
中文:`phpcs:具有默认值的参数必须位于参数列表的末尾`
错误写法:

正确写法:

# (六)开口位置
英文:`Opening brace should be on a new line`
中文:`开口支撑应该在一个新的线上`
错误写法:

正确写法:

# (七) 参数有空格
错误写法:

正确写法:

# (八)依赖注入
错误:

正确:

英文:`A number of parameters,their name or types(if any) in PHPDoc comment do not match the ones in resective funcdtion or method declaration.`
中文:`PHPDoc注释中的一些参数,它们的名称或类型(如果有的话)与切除函数或方法声明中的参数不匹配。`