CAS_Client::_ensureAuthenticationCalled PHP Метод

_ensureAuthenticationCalled() приватный Метод

Ensure that authentication was checked. Terminate with exception if no authentication was performed
private _ensureAuthenticationCalled ( ) : void
Результат void
    private function _ensureAuthenticationCalled()
    {
        if (!$this->wasAuthenticationCalled()) {
            throw new CAS_OutOfSequenceBeforeAuthenticationCallException();
        }
    }
CAS_Client