/**
  * Sets a variable value in the scope instance, on the server.
  * @param $variable_path string separated by / to the variable and part that should be set
  * @param $value the new value
  */
 public function setVariableByPath($variable_path, $value)
 {
     $this->scope_instance->setVariableByPath($variable_path, $value);
 }