SonarQube中的Codestyle

时间:2017-11-20 12:27:22

标签: php sonarqube

我们正在使用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']
        );

此功能的风格有什么问题?

1 个答案:

答案 0 :(得分:0)

您遇到此问题是因为PSR2 states that

  

代码必须使用4个空格进行缩进

您的代码目前使用2个空格进行缩进。