get() public method

Retrieve an item from the cache by key.
public get ( string $key ) : mixed
$key string
return mixed
Beispiel #1
0
 /**
  * Retrieve an item from the cache by key.
  *
  * @param  string $key
  *
  * @return mixed
  */
 public function get($key)
 {
     return $this->adapter->get($key);
 }