/** * Default set function to set the value to the given property * * @param $key * @param $value * @return \Enlight_Hook_HookArgs */ public function set($key, $value) { if ($this->containsKey($key)) { parent::set($key, $value); } return $this; }