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