コード例 #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;
 }