Example #1
0
 /**
  * Set a registry value.
  *
  * @param   string  $path   Registry Path (e.g. foo.content.showauthor)
  * @param   mixed   $value  Value of entry.
  *
  * @return  static  Return self to support chaining.
  *
  * @since   2.1
  */
 public function setRaw($path, $value)
 {
     RegistryHelper::setByPath($this->data, $path, $value, $this->separator);
     return $this;
 }