Example #1
0
 /**
  * Set a value to a page without tracking changes and without exceptions
  *
  * Otherwise same as set()
  *
  * @param string $key
  * @param mixed $value
  * @return $this
  *
  */
 public function setQuietly($key, $value)
 {
     $this->quietMode = true;
     parent::setQuietly($key, $value);
     $this->quietMode = false;
     return $this;
 }