Essence\Provider\OEmbed\Config::endpoint PHP Method

endpoint() public method

Returns the endpoint.
public endpoint ( ) : string
return string Endpoint.
    public function endpoint()
    {
        return $this->_endpoint;
    }

Usage Example

コード例 #1
0
 /**
  *
  */
 public function testConstruct()
 {
     $Config = new Config('endpoint', 'format');
     $this->assertEquals('endpoint', $Config->endpoint());
     $this->assertEquals('format', $Config->format());
 }