コード例 #1
0
ファイル: Cache.php プロジェクト: zangles/lennyba
 /**
  * @return Cache
  */
 public static function getInstance()
 {
     if (!self::$instance) {
         $caching_system = _PS_CACHING_SYSTEM_;
         self::$instance = new $caching_system();
     }
     return self::$instance;
 }
コード例 #2
0
ファイル: Cache.php プロジェクト: M03G/PrestaShop
 /**
  * Unit testing purpose only
  */
 public static function deleteTestingInstance()
 {
     self::$instance = null;
 }