PSR用于嵌套IF条件

时间:2015-06-04 10:22:08

标签: php psr-2 psr-1

我只是将我的代码迁移到PSR标准。我不确定如何在嵌套条件下编写它。我对行间距感到困惑。 If条件后我可以使用一个行空格吗?下面是我的示例代码。

if ($this->value) {
    if ($this->value === 'abc') {
         $x = $this->x();
    }

    $x = 'lababala';

    if ($this->value === '123') {
         $x = $this->y();
    }

    $end = new object();
}

0 个答案:

没有答案