Example #1
0
 /**
  * register router
  *
  * @param $router
  * @param $params
  */
 public function registerRouter($router, ...$params)
 {
     $this->_router->add($router, ...$params);
     if (defined('FOCUS_DEBUG') && FOCUS_DEBUG) {
         $this->getLogger()->debug('add new router: ' . (is_string($router) ? $router : get_class($router)));
     }
 }
Example #2
0
 /**
  * register router
  *
  * @param $router
  * @param $params
  */
 public function registerRouter($router, ...$params)
 {
     $this->_router->add($router, ...$params);
     $this->getLogger()->debug('add new router: ' . (is_string($router) ? $router : get_class($router)));
 }