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

getKeyList() защищенный Метод

Retreive keylist from cache or create it if it doesn't exists
protected getKeyList ( ) : Prado\Collections\TList
Результат Prado\Collections\TList
    protected function getKeyList()
    {
        if (($keyList = $this->getCache()->get($this->getKeyListId())) === false) {
            $keyList = new TList();
            $this->getCache()->set($this->getKeyListId(), $keyList);
        }
        return $keyList;
    }