Pop\Cache\Cache::load PHP Method

load() public method

Method to load a value from cache.
public load ( string $id ) : mixed
$id string
return mixed
    public function load($id)
    {
        return $this->adapter->load($id, $this->lifetime);
    }