getClient() 공개 메소드

Returns the underlying client instance used by the pipeline object.
public getClient ( ) : Predis\ClientInterface
리턴 Predis\ClientInterface
예제 #1
0
 /**
  * @group disconnected
  */
 public function testConstructor()
 {
     $client = new Client();
     $pipeline = new Pipeline($client);
     $this->assertSame($client, $pipeline->getClient());
 }