8000 minor #13166 Update multiple_entity_managers.rst (ricknox) · symfony/symfony-docs@53c72df · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 53c72df

Browse files
committed
minor #13166 Update multiple_entity_managers.rst (ricknox)
This PR was merged into the 4.4 branch. Discussion ---------- Update multiple_entity_managers.rst Commits ------- 9b2315f fix: minor array fix/adjustment.
2 parents aa585cf + 9b2315f commit 53c72df

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)
0