CAS_Client::getAuthenticationCallerFile PHP Method

getAuthenticationCallerFile() public method

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