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