Mailjet\Client::getApiUrl PHP Method

getApiUrl() private method

Build the base API url depending on wether user need a secure connection or not
private getApiUrl ( ) : string
return string the API url;
    private function getApiUrl()
    {
        $h = $this->secure ? 'https' : 'http';
        return $h . '://api.mailjet.com/' . $this->version;
    }