コード例 #1
0
ファイル: Cache.php プロジェクト: cannking/vtigercrm-debug
 public static function getInstance()
 {
     if (self::$selfInstance) {
         return self::$selfInstance;
     } else {
         self::$selfInstance = new self();
         return self::$selfInstance;
     }
 }