예제 #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);
     }
 }