Imdb\CacheBase::get PHP Method

get() public method

public get ( $key )
    public function get($key)
    {
        if (!$this->config->usecache) {
            return null;
        }
        $cleanKey = $this->sanitiseKey($key);
        return $this->getInternal($key, $cleanKey);
    }