Neos\FluidAdaptor\Core\Cache\CacheAdaptor::get PHP Méthode

get() public méthode

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