Neos\FluidAdaptor\Core\Cache\CacheAdaptor::get PHP 메소드

get() 공개 메소드

Gets an entry from the cache or NULL if the entry does not exist.
public get ( string $name ) : string
$name string
리턴 string
    public function get($name)
    {
        if ($this->flowCache->has($name)) {
            $this->flowCache->requireOnce($name);
        }
        return $this->flowCache->getWrapped($name);
    }