此代码发生错误:
$posts = App\Post::whereHas('comments', function (Builder $query) {
$query->where('content', 'like', 'foo%');
});
我正在使用phpcs vscode,需要phpcs的所有默认规则,除了这个!
你能告诉我怎么做吗
- 编写一个包含所有默认规则的 phpcs
- 如何排除此规则
此代码发生错误:
$posts = App\Post::whereHas('comments', function (Builder $query) {
$query->where('content', 'like', 'foo%');
});
我正在使用phpcs vscode,需要phpcs的所有默认规则,除了这个!
你能告诉我怎么做吗
您可以使用ruleset.xml
此内容
<?xml version="1.0"?>
<ruleset name="MyStandard">
<description>My custom coding standard.</description>
<rule ref="PEAR">
<exclude name="PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket"/>
<exclude name="PEAR.Functions.FunctionCallSignature.CloseBracketLine"/>
</rule>
</ruleset>
然后在 Phpcs 中添加这一行:standards settings.json
in VS code
{
"phpcs.standard": "path_to_your_standard/ruleset.xml"
}
有关规则集的更多信息,您可以在此处找到