InfluxDB\Client::getBaseURI PHP 메소드

getBaseURI() 공개 메소드

public getBaseURI ( ) : mixed
리턴 mixed
    public function getBaseURI()
    {
        return $this->baseURI;
    }

Usage Example

예제 #1
0
 public function testBaseURl()
 {
     $client = new Client('localhost', 8086);
     $this->assertEquals($client->getBaseURI(), 'http://localhost:8086');
 }