Prado\Data\SqlMap\DataMapper\TSqlMapLruCache::get PHP Méthode

get() public méthode

public get ( $key ) : mixed
Résultat mixed Gets a cached object with the specified key.
    public function get($key)
    {
        if ($this->_keyList->contains($key)) {
            $this->_keyList->remove($key);
            $this->_keyList->add($key);
            return $this->_cache->itemAt($key);
        }
    }
TSqlMapLruCache