CAS_Client::wasAuthenticationCallSuccessful PHP 메소드

wasAuthenticationCallSuccessful() 공개 메소드

Throws a CAS_OutOfSequenceException if wasAuthenticationCalled() is false and markAuthenticationCall() didn't happen.
    public function wasAuthenticationCallSuccessful()
    {
        $this->_ensureAuthenticationCalled();
        return $this->_authentication_caller['result'];
    }
CAS_Client