spec\MGDigital\BusQue\Redis\Predis\MockingClientInterface::srem PHP Method

srem() public method

public srem ( $key, $member )
    public function srem($key, $member);

Usage Example

Exemplo n.º 1
0
 public function it_can_srem()
 {
     $this->client->srem('test', ['test'])->shouldBeCalled();
     $this->sRem('test', ['test']);
     $this->client->srem('test', ['test'])->willThrow($this->predisException);
     $this->shouldThrow(DriverException::class)->during('sRem', ['test', ['test']]);
 }