Doctrine\Common\Cache\CacheProvider::doDelete PHP Метод

doDelete() абстрактный защищенный Метод

Deletes a cache entry.
abstract protected doDelete ( string $id ) : boolean
$id string The cache id.
Результат boolean TRUE if the cache entry was successfully deleted, FALSE otherwise.
    protected abstract function doDelete($id);

Usage Example

 /**
  * @inheritdoc
  */
 protected function doDelete($id)
 {
     return $this->cacheProvider->doDelete($id);
 }