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