From 11095f4c8f6c1cdbca00c9649e2628f1c0c1d338 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20D?= <72203064+TheoD02@users.noreply.github.com> Date: Mon, 23 Oct 2023 22:15:08 +0200 Subject: [PATCH] fix(config): Add missing key "type" in doctrine.yaml config for version 2.10 (#1247) --- doctrine/doctrine-bundle/2.10/config/packages/doctrine.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/doctrine/doctrine-bundle/2.10/config/packages/doctrine.yaml b/doctrine/doctrine-bundle/2.10/config/packages/doctrine.yaml index ec0f77ee..559641f7 100644 --- a/doctrine/doctrine-bundle/2.10/config/packages/doctrine.yaml +++ b/doctrine/doctrine-bundle/2.10/config/packages/doctrine.yaml @@ -16,6 +16,7 @@ doctrine: auto_mapping: true mappings: App: + type: attribute is_bundle: false dir: '%kernel.project_dir%/src/Entity' prefix: 'App\Entity'