Input:
$this->view->textareaContentId = 'a' . $activationId . 'n' . $noticeTypeId;
Output:
$this->view->textareaContentId = 'a' .
$activationId .
'n' .
$noticeTypeId;
I'd suggest
$this->view->textareaContentId =
'a' . $activationId . 'n' . $noticeTypeId;
or (for longer cases)
$this->view->textareaContentId = 'a' .
$activationId .
'n' .
$noticeTypeId;
Input:
Output:
I'd suggest
or (for longer cases)