/** * Sets the error cache to TRUE and propagates the information * upwards the Result-Object Tree * * @return void */ protected function setErrorsExist() { $this->errorsExist = TRUE; if ($this->parent !== NULL) { $this->parent->setErrorsExist(); } }
/** * Sets the error cache to TRUE and propagates the information * upwards the Result-Object Tree * * @return void */ protected function setErrorsExist() { $this->errorsExist = true; if ($this->parent !== null) { $this->parent->setErrorsExist(); } }