コード例 #1
0
ファイル: routes.php プロジェクト: foo123/routes-for-wp
 public static function getInstance()
 {
     if (self::$singletonRef == NULL) {
         self::$singletonRef = new Routes();
     }
     return self::$singletonRef;
 }