コード例 #1
0
ファイル: MY_Cache.php プロジェクト: anqqa/Anqh
 /**
  * Fetches a cache by key. NULL is returned when a cache item is not found.
  *
  * @param   string  $key
  * @return  mixed   cached data or NULL
  */
 public function get($key)
 {
     Cache::$queries['gets'][] = $key;
     return parent::get($key);
 }