有没有一种格式化长三元运算符行的好方法?比方说:
$order = new Order($this->isProfessionalChildCollaborator($this->getUser()) ? $this->getUser()->getParent() : $this->getUser());
根据 PSR 中定义的每行 120 个字符,这太长了。我应该这样做:
$order = new Order(
$this->isProfessionalChildCollaborator($this->getUser()) ?
$this->getUser()->getParent() :
$this->getUser()
);
还是有其他最佳实践?