Skip to content

Commit 92a3545

Browse files
committed
Merge branch '5.0'
* 5.0: fix: minor array fix/adjustment.
2 parents 1586391 + 6a07a71 commit 92a3545

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

doctrine/multiple_entity_managers.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -156,23 +156,23 @@ The following configuration code shows how you can configure two entity managers
156156
'connection' => 'default',
157157
'mappings' => [
158158
'Main' => [
159-
is_bundle => false,
160-
type => 'annotation',
161-
dir => '%kernel.project_dir%/src/Entity/Main',
162-
prefix => 'App\Entity\Main',
163-
alias => 'Main',
159+
'is_bundle' => false,
160+
'type' => 'annotation',
161+
'dir' => '%kernel.project_dir%/src/Entity/Main',
162+
'prefix' => 'App\Entity\Main',
163+
'alias' => 'Main',
164164
]
165165
],
166166
],
167167
'customer' => [
168168
'connection' => 'customer',
169169
'mappings' => [
170170
'Customer' => [
171-
is_bundle => false,
172-
type => 'annotation',
173-
dir => '%kernel.project_dir%/src/Entity/Customer',
174-
prefix => 'App\Entity\Customer',
175-
alias => 'Customer',
171+
'is_bundle' => false,
172+
'type' => 'annotation',
173+
'dir' => '%kernel.project_dir%/src/Entity/Customer',
174+
'prefix' => 'App\Entity\Customer',
175+
'alias' => 'Customer',
176176
]
177177
],
178178
],

0 commit comments

Comments
 (0)