You are here

protected function MemcachedProfilerStorage::delete in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Profiler/MemcachedProfilerStorage.php \Symfony\Component\HttpKernel\Profiler\MemcachedProfilerStorage::delete()

Delete item from the memcache server.

Parameters

string $key:

Return value

bool

Overrides BaseMemcacheProfilerStorage::delete

File

vendor/symfony/http-kernel/Profiler/MemcachedProfilerStorage.php, line 85

Class

MemcachedProfilerStorage
Memcached Profiler Storage.

Namespace

Symfony\Component\HttpKernel\Profiler

Code

protected function delete($key) {
  return $this
    ->getMemcached()
    ->delete($key);
}