FluidTYPO3\Vhs\ViewHelpers\Render\CacheViewHelper::retrieve PHP 메소드

retrieve() 보호된 메소드

protected retrieve ( string $id ) : mixed
$id string
리턴 mixed
    protected function retrieve($id)
    {
        if ($this->cache->has(self::ID_PREFIX . self::ID_SEPARATOR . $id)) {
            return $this->cache->get(self::ID_PREFIX . self::ID_SEPARATOR . $id);
        }
        return null;
    }