singleton(FormDesignRegistrar::class, function () { return new FormDesignRegistrar(); }); } /** * @inheritDoc */ public function boot() { $registrar = give()->make(FormDesignRegistrar::class); Hooks::doAction('givewp_register_form_design', $registrar); Hooks::doAction('givewp_unregister_form_design', $registrar); } }