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