コード例 #1
0
ファイル: Context.php プロジェクト: JonathanRH/thebuggenie
 /**
  * Returns the routing object
  *
  * @return \thebuggenie\core\framework\Routing
  */
 public static function getRouting()
 {
     if (!self::$_routing) {
         self::$_routing = new \thebuggenie\core\framework\Routing();
     }
     return self::$_routing;
 }