コード例 #1
0
ファイル: ClassUtil.php プロジェクト: rudraks/boot
 public static function init($clear = false)
 {
     if (self::$cache == null) {
         self::$cache = new RxCache("annotation", true);
     }
     if ($clear == true) {
         self::$cache->clear();
     }
 }
コード例 #2
0
ファイル: ClassUtil.php プロジェクト: rudraks/core
 public static function init()
 {
     if (self::$cache == null) {
         self::$cache = new RxCache("annotation", true);
     }
 }