Exemplo n.º 1
0
 /**
  * @param string $action
  */
 protected function executeControllerAction($action = null)
 {
     $actionMethod = $this->getControllerActionName($action);
     $this->controller->beforeExecute($action);
     $this->controller->{$actionMethod}();
     $this->controller->afterExecute();
 }