setServerSamlValidateURL() public method

This method sets the samlValidate URL of the CAS server.
public setServerSamlValidateURL ( string $url ) : string
$url string the samlValidate URL
return string samlValidate URL
Example #1
0
 /**
  * Set the samlValidate URL of the CAS server.
  *
  * @param string $url the samlValidate URL
  *
  * @return void
  */
 public static function setServerSamlValidateURL($url = '')
 {
     phpCAS::traceBegin();
     phpCAS::_validateClientExists();
     try {
         self::$_PHPCAS_CLIENT->setServerSamlValidateURL($url);
     } catch (Exception $e) {
         phpCAS::error(get_class($e) . ': ' . $e->getMessage());
     }
     phpCAS::traceEnd();
 }