private function MemcacheMock::getData

1 call to MemcacheMock::getData()
MemcacheMock::get in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Profiler/Mock/MemcacheMock.php
Retrieve item from the server.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Profiler/Mock/MemcacheMock.php, line 245

Class

MemcacheMock
MemcacheMock for simulating Memcache extension in tests.

Namespace

Symfony\Component\HttpKernel\Tests\Profiler\Mock

Code

private function getData($key) {
  if (isset($this->storage[$key])) {
    return unserialize($this->storage[$key]);
  }
  return false;
}