CAS_Client::wasAuthenticationCallSuccessful PHP Method

wasAuthenticationCallSuccessful() public method

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