Prado\Data\SqlMap\DataMapper\TSqlMapCache::delete PHP Méthode

delete() public méthode

public delete ( $key ) : object
Résultat object the object removed if exists, null otherwise.
    public function delete($key)
    {
        $object = $this->get($key);
        $this->_cache->remove($key);
        $this->_keyList->remove($key);
        return $object;
    }