Example #1
0
 /**
  * Initialize the router : create the default router if not already given, and inject framework to the router
  * @return \Sohoa\Framework\Framework
  */
 public function initRouter()
 {
     if (!$this->_router) {
         $this->_router = new Router();
     }
     $this->_router->setFramework($this);
     return $this;
 }