CAS_Client::getAuthenticationCallerLine PHP Method

getAuthenticationCallerLine() public method

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