CAS_Client::getAuthenticationCallerLine PHP Méthode

getAuthenticationCallerLine() public méthode

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