module = $this->module(); $this->ctrl = $this->ctrl(); $this->class = '\\' . APP_NS . '\\' . $this->module . '\\controller\\' . $this->ctrl; $this->method = $this->method(); $this->params = $this->params(); } /** * */ public function module() { // TODO Auto-generated method stub return 'home'; } /** * */ public function ctrl() { // TODO Auto-generated method stub return 'Index'; } /** * */ public function method() { // TODO Auto-generated method stub return 'index'; } /** * */ public function params() { // TODO Auto-generated method stub return []; } }