where('con-6ren">
gpt4 book ai didi

phpcs - 防止显示 "Opening parenthesis of a multi-line function call must be the last content on the line"

转载 作者:行者123 更新时间:2023-12-05 07:15:47 30 4
gpt4 key购买 nike

此代码发生的错误:

$posts = App\Post::whereHas('comments', function (Builder $query) {
$query->where('content', 'like', 'foo%');
});

我正在使用 phpcs vscode 并且需要 phpcs 的所有默认规则,除了这个规则!

你能告诉我怎么做吗

  1. 使用所有默认规则编写一个 phpcs
  2. 如何排除这条规则

最佳答案

您可以将 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"
}

有关规则集的更多信息,您可以找到 here

关于phpcs - 防止显示 "Opening parenthesis of a multi-line function call must be the last content on the line",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59505661/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com