CAS_Client::getAuthenticationCallerMethod PHP Method

getAuthenticationCallerMethod() public method

Throws a CAS_OutOfSequenceException if wasAuthenticationCalled() is false and markAuthenticationCall() didn't happen.
public getAuthenticationCallerMethod ( ) : array
return array Keys are 'file', 'line', and 'method'
    public function getAuthenticationCallerMethod()
    {
        $this->_ensureAuthenticationCalled();
        return $this->_authentication_caller['method'];
    }
CAS_Client