예제 #1
0
파일: GO.php 프로젝트: ajaboa/crmpuan
 /**
  * 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;
 }