warp = $warp; } /* ArrayAccess interface implementation */ public function offsetGet($name) { return $this->warp[$name]; } public function offsetSet($name, $helper) { $this->warp[$name] = $helper; } public function offsetUnset($name) { unset($this->warp[$name]); } public function offsetExists($name) { return !empty($this->warp[$name]); } }