private function MemcacheMock::storeData

3 calls to MemcacheMock::storeData()

File

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

Class

MemcacheMock
MemcacheMock for simulating Memcache extension in tests.

Namespace

Symfony\Component\HttpKernel\Tests\Profiler\Mock

Code

private function storeData($key, $value) {
  $this->storage[$key] = serialize($value);
  return true;
}