コード例 #1
0
ファイル: Req.class.php プロジェクト: rubens21/gorpo
 public static function start()
 {
     if (!is_null(self::$instance)) {
         throw new MyException('The RPost already was initialized');
     }
     self::$instance = new self();
     return self::$instance;
 }