コード例 #1
0
ファイル: myshop_handlers.php プロジェクト: naao/myshop
 public static function getInstance()
 {
     if (!self::$instance instanceof self) {
         self::$instance = new self();
     }
     return self::$instance;
 }