CAS_Client::setBaseURL PHP Method

setBaseURL() public method

This method sets the base URL of the CAS server.
public setBaseURL ( string $url ) : string
$url string the base URL
return string base url
    public function setBaseURL($url)
    {
        // Argument Validation
        if (gettype($url) != 'string') {
            throw new CAS_TypeMismatchException($url, '$url', 'string');
        }
        return $this->_server['base_url'] = $url;
    }
CAS_Client