getEndpoint() public method

Get Endpoint URL.
public getEndpoint ( ) : string
return string
Example #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());
 }