menuService = new MenuService(); $this->migrationService = new MigrationService(); } /** * @throws \Exception */ public function init(): void { $this->migrationService->runAtPath("{KERNEL_APP_MODULES}/gestalt_profile/migrations"); $this->menuService->createItem([ "label" => "Профили психологов", "url" => "/admin/gestalt_profile", "slug" => "gestalt_profile", ]); } /** * @throws \Exception */ public function deactivate(): void { $this->migrationService->rollbackAtPath("{KERNEL_APP_MODULES}/gestalt_profile/migrations"); $this->menuService->removeItemBySlug("gestalt_profile"); } }