/** * @return VersionEndpoint */ public function version() { return $this->endpointFactory->getEndpoint(VersionEndpoint::class, $this->client); }
/** * @expectedException InvalidArgumentException */ public function testGetEndpointError() { $factory = new EndpointFactory(); $client = new GuzzleClient('', '', []); $factory->getEndpoint('test', $client); }
/** * @return TempoEndpoint */ public function tempo() { return $this->endpointFactory->getEndpoint('tempo', $this->client); }