/**
  * Unset a variable value by array access to the TemplateEngine
  *
  * @param   string $offset The variable to be unset
  * @return  void
  */
 public function offsetUnset($offset)
 {
     $this->registry->setEntry($offset, null);
 }