Nette\Caching\Storages\MemoryStorage::read PHP Method

read() public method

Read from cache.
public read ( $key ) : mixed | null
return mixed | null
    public function read($key)
    {
        return isset($this->data[$key]) ? $this->data[$key] : NULL;
    }