如何使PHP CodeSniffer Fixer忽略名称空间声明?
作者:互联网
我正在使用PHP Coding Standards Fixer的sublime text 2插件.它工作正常,除了它认为命名空间无效(它实际上是无效的,我没关系).此错误会阻止脚本更正文件的其余部分.我收到以下错误:
! The namespace Application\Controllers\Admin in <filepath> does not match the file path according to PSR-0 rules.
如何告诉脚本忽略命名空间约束.可以更改命令行参数和Sublime文本2用户设置.
解决方法:
我使用下面的命令来排除pso0规则:
php-cs-fixer fix --level="psr2" PATH --fixers=-psr0
标签:php,sublimetext2,codesniffer,psr-0 来源: https://codeday.me/bug/20190629/1331173.html