/** * The famous register helper matching the Handlebars API * * @param *string $name The name of the helper * @param *function $helper The helper handler * * @return Eden\Handlebrs\Index */ public function registerHelper($name, $helper) { Runtime::registerHelper($name, $helper); return $this; }