我们正在使用SonarQube来分析Symfony项目。
在IDE(PHPSTORM)中,我们在SonarQube中设置了预定义的Codestyle(PSR2)和相同的内容。
SonarQube抱怨以下代码样式并说:“将此列表中的所有参数对齐到列”16“。”,在$ error之后。
$error = json_encode('some Error');
$response = new Response(
$error,
Response::HTTP_OK,
['content-type' => 'application/json']
);
此功能的风格有什么问题?