コード例 #1
0
ファイル: Cache.php プロジェクト: ligerzero459/block-explorer
 public static function getInstance()
 {
     if (!isset(self::$instance)) {
         self::$instance = new Cache();
     }
     return self::$instance;
 }