我只是将我的代码迁移到PSR标准。我不确定如何在嵌套条件下编写它。我对行间距感到困惑。 If条件后我可以使用一个行空格吗?下面是我的示例代码。
if ($this->value) {
if ($this->value === 'abc') {
$x = $this->x();
}
$x = 'lababala';
if ($this->value === '123') {
$x = $this->y();
}
$end = new object();
}