doDelete() abstract protected method

Deletes a cache entry.
abstract protected doDelete ( string $id ) : boolean
$id string The cache id.
return boolean TRUE if the cache entry was successfully deleted, FALSE otherwise.
 /**
  * @inheritdoc
  */
 protected function doDelete($id)
 {
     return $this->cacheProvider->doDelete($id);
 }