Beispiel #1
0
 /**
  * Startet das Routing
  * @return mixed
  * @throws \Exception
  */
 private function performRouting()
 {
     $this->preRouting();
     //Instanziert den übergebenen Controller
     $this->setControllerAndAction($this->requestAnalyzer->getControllerName(), $this->requestAnalyzer->getActionName());
     //Pre-Flight Checks
     $this->postRouting();
 }