multicall() public method

public multicall ( )
 public function testMulticallFactory()
 {
     $multicall = $this->client->multicall();
     $this->assertInstanceOf('fXmlRpc\\MulticallBuilderInterface', $multicall);
     $this->assertNotSame($multicall, $this->client->multicall());
     $this->assertSame($this->client, $multicall->getClient());
 }
Beispiel #2
0
 /**
  * {@inheritdoc}
  */
 public function multicall()
 {
     return $this->wrapped->multicall();
 }