Prado\Data\SqlMap\DataMapper\TSqlMapApplicationCache::get PHP Метод

get() публичный Метод

public get ( $key ) : mixed
Результат mixed Gets a cached object with the specified key.
    public function get($key)
    {
        $result = $this->getCache()->get($key);
        if ($result === false) {
            // if the key has not been found in cache (e.g expired), remove from keylist
            $keyList = $this->getKeyList();
            if ($keyList->contains($key)) {
                $keyList->remove($key);
                $this->setKeyList($keyList);
            }
        }
        return $result === false ? null : $result;
    }