示例#1
0
文件: Memory.php 项目: molajo/cache
 /**
  * Return cached value
  *
  * @param   string $key
  *
  * @return  CacheItem
  * @since   1.0.0
  */
 public function get($key)
 {
     return parent::get($key);
 }
示例#2
0
文件: Dummy.php 项目: molajo/cache
 /**
  * Connect to Cache
  *
  * @param   array $options
  *
  * @return  $this
  * @since   1.0.0
  */
 public function connect($options = array())
 {
     parent::connect($options);
     return $this;
 }