コード例 #1
0
ファイル: storage.php プロジェクト: vazahat/dudex
 /**
  *
  * @return INSTALL_Storage
  */
 public static function getInstance()
 {
     if (self::$classInstance === null) {
         self::$classInstance = new self();
     }
     return self::$classInstance;
 }
コード例 #2
0
ファイル: install.php プロジェクト: vazahat/dudex
 /**
  * 
  * @return INSTALL_Storage
  */
 public static function getStorage()
 {
     return INSTALL_Storage::getInstance();
 }