コード例 #1
0
ファイル: MT.php プロジェクト: oaki/demoshop
 public static function getInstance()
 {
     if (self::$instance === NULL) {
         return self::$instance = new MT();
     } else {
         return self::$instance;
     }
 }