예제 #1
0
 /**
  * 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();
     }
 }
예제 #2
0
 /**
  * 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();
     }
 }