Пример #1
0
 /**
  * Returns the router that routes requests to controller actions.
  *
  * @return \GO\Base\Router
  */
 public static function router()
 {
     if (!isset(self::$_router)) {
         self::$_router = new \GO\Base\Router();
     }
     return self::$_router;
 }