Newscoop\Services\CacheService::delete PHP Method

delete() public method

Delete key from cache
public delete ( string | array $id ) : boolean
$id string | array
return boolean
    public function delete($id)
    {
        return $this->getCacheDriver()->delete($this->getCacheKey($id));
    }