_response->appendBody("preDispatch called\n"); } /** * Test Function for postDispatch * * @return void */ public function postDispatch() { $this->_response->appendBody("postDispatch called\n"); } /** * Test Function for barAction * * @return void */ public function barAction() { $this->_response->appendBody("Default Baz::bar action called\n"); } }