I would like to have this indentation like Zend does on objects:
$this->getResponse()
->appendBody('Hello World');
But what I have now is:
$this->getResponse()
->appendBody('Hello World');
and I don't have any idea how I can do in this way. Thanks.