Esempio n. 1
0
 /**
  * Sets the notices cache to TRUE and propagates the information
  * upwards the Result-Object Tree
  *
  * @return void
  */
 protected function setNoticesExist()
 {
     $this->noticesExist = TRUE;
     if ($this->parent !== NULL) {
         $this->parent->setNoticesExist();
     }
 }
Esempio n. 2
0
 /**
  * Sets the notices cache to TRUE and propagates the information
  * upwards the Result-Object Tree
  *
  * @return void
  */
 protected function setNoticesExist()
 {
     $this->noticesExist = true;
     if ($this->parent !== null) {
         $this->parent->setNoticesExist();
     }
 }