Retrieve item from the server.
Parameters
string $key:
Return value
boolean
File
- drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Profiler/Mock/RedisMock.php, line 132
Class
- RedisMock
- RedisMock for simulating Redis extension in tests.
Namespace
Symfony\Component\HttpKernel\Tests\Profiler\Mock
Code
public function get($key) {
if (!$this->connected) {
return false;
}
return $this
->getData($key);
}