_helper->viewRenderer->setNoRender(); echo $this->_helper->s2('Service_Calc')->add(1, 2); } /** * GET /s2zf/index/add2 */ public function add2Action() { $this->_helper->viewRenderer->setNoRender(); echo $this->_helper->s2->calc->add(1, 2); } /** * GET /s2zf/index/bug-list */ public function bugListAction() { $this->view->dtos = $this->_helper->s2('Service_Sample')->fetchAllBugs(); } /** * GET /s2zf/index/product-bug-descs */ public function productBugDescsAction() { $this->view->dtos = $this->_helper->s2->sample->fetchProductBugDescriptions(); } }