How do I display the HTTPResponse status code and body within a controller's action template? When I tried to set
$this->response->setStatusCode(400);
$this->response->setBody('invalid 2');
and return $this only what's on my action template is displayed? How do I access status code and body inside my default template?