hGet() public method

public hGet ( string $key, string $field ) : string | null
$key string
$field string
return string | null
Example #1
0
 public function it_can_read_a_command()
 {
     $this->adapter->hGet('test:test:messages', 'test')->shouldBeCalled()->willReturn('test');
     $this->readCommand('test', 'test')->shouldReturn('test');
 }