我有这段代码:
$this->viewData = [
'user' => $this->user,
'donor' => $this->donor,
'cause' => null,
'donation' => null,
'autologin_url' => $autologin_url,
];
我希望所有=>
都对齐。我可以在某处设置吗?
E.g。我希望它看起来像这样
$this->viewData = [
'user' => $this->user,
'donor' => $this->donor,
'cause' => null,
'donation' => null,
];