Skip to content

Commit

Permalink
fix:错别字
Browse files Browse the repository at this point in the history
  • Loading branch information
Iwannamaybe committed Sep 23, 2019
1 parent 11f5002 commit 865066c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public function getLoginUri($redirect = null, $gateway = false, $renew = false)
}

$url = $this->buildUri($this->CasConfig['server'] . $this->CasConfig['login_uri'], $params);
$this->_Logger->debug('单点登陆】登陆地址', ['url' => $url]);
$this->_Logger->debug('单点登录】登录地址', ['url' => $url]);
return $url;
}

Expand All @@ -245,7 +245,7 @@ public function getLogoutUri($redirect = null)
'service' => $this->getRedirectUri($redirect),
'channel' => $this->CasConfig['channel']
]);
$this->_Logger->debug('单点登陆】注销地址', ['url' => $url]);
$this->_Logger->debug('单点登录】注销地址', ['url' => $url]);
return $url;
}

Expand Down Expand Up @@ -661,7 +661,7 @@ public function validateCAS20(&$validate_url, &$text_response, &$tree_response,
$query_params['renew'] = 'true';
}
$validate_url = $this->buildUri($validate_base_url, $query_params);
$this->_Logger->debug('单点登陆】构建验证地址', ['validate_base_url' => $validate_base_url, 'validate_url' => $validate_url]);
$this->_Logger->debug('单点登录】构建验证地址', ['validate_base_url' => $validate_base_url, 'validate_url' => $validate_url]);
if (!$this->readUri($validate_url, $headers, $text_response, $err_msg)) {
$this->_Logger->notice('could not open URL \'' . $validate_url . '\' to validate (' . $err_msg . ')');
throw new AuthenticationException(
Expand Down

0 comments on commit 865066c

Please sign in to comment.