public function init() { parent::init(); }
/** * * @param \hass\module\BaseModule $module */ public function uninstall($module) { try { $module->uninstall(); $model = $module->getPackageInfo()->getModel(); $model->delete(); return true; } catch (\Exception $e) { return false; } }