menuService = new MenuService(); $this->migrationService = new MigrationService(); } /** * @throws \Exception */ public function init(): void { $this->migrationService->runAtPath("{KERNEL_APP_MODULES}/tgbot/migrations"); $this->menuService->createItem([ "label" => "TG bot", "url" => "/admin/tg-bot", "slug" => "tg-bot", ]); } public function deactivate() { $this->menuService->removeItemBySlug("tg-bot"); $this->migrationService->rollbackAtPath("{KERNEL_APP_MODULES}/tgbot/migrations"); } }