getEndpoint() 공개 메소드

Get Endpoint URL.
public getEndpoint ( ) : string
리턴 string
예제 #1
0
 /**
  * @dataProvider setEndpointDataProvider
  */
 public function testSetEndpoint($given_endpoint, $used_endpoint)
 {
     $api = new Api($given_endpoint, $this->credential, $this->client->reveal());
     $this->assertEquals($used_endpoint, $api->getEndpoint());
 }