CAS_Client::getAuthenticationCallerMethod PHP 메소드

getAuthenticationCallerMethod() 공개 메소드

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