CAS_Client::ensureIsProxy PHP 메소드

ensureIsProxy() 공개 메소드

Ensure that this is actually a proxy object or fail with an exception
public ensureIsProxy ( ) : void
리턴 void
    public function ensureIsProxy()
    {
        if (!$this->isProxy()) {
            throw new CAS_OutOfSequenceBeforeProxyException();
        }
    }
CAS_Client