menuService = new MenuService(); $this->migrationService = new MigrationService(); } public function init(): void { $this->migrationService->runAtPath("{KERNEL_MODULES}/post/migrations"); $this->menuService->createItem([ "label" => "Посты", "url" => "/admin/post", "slug" => "post", ]); } public function deactivate(): void { $this->menuService->removeItemBySlug("post"); $this->migrationService->rollbackAtPath("{KERNEL_MODULES}/post/migrations"); } }