/**
  * Shortcut for
  *
  * <code>$this->getVar('name', 'value')</code>
  *
  * @param string $name The name of the variable
  * @return mixed The value
  */
 public function &__get($name)
 {
     return $this->varHolder->get($name);
 }