Prado\Caching\TCache::offsetUnset PHP 메소드

offsetUnset() 공개 메소드

Deletes the value with the specified key from cache This method is required by the interface \ArrayAccess.
public offsetUnset ( $id ) : boolean
리턴 boolean if no error happens during deletion
    public function offsetUnset($id)
    {
        $this->delete($id);
    }