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