Exemple #1
0
 /**
  * @return void
  * @param Nano_Route $route
  */
 protected function setUpController(Nano_Route $route)
 {
     if (null === $this->action) {
         $this->action = $route->action();
     }
     if (null === $this->controller) {
         $this->controller = $route->controller();
     }
 }