@@ -54,7 +54,6 @@ The following configuration code shows how you can configure two entity managers
54
54
mappings :
55
55
Main :
56
56
is_bundle : false
57
- type : annotation
58
57
dir : ' %kernel.project_dir%/src/Entity/Main'
59
58
prefix : ' App\Entity\Main'
60
59
alias : Main
@@ -63,7 +62,6 @@ The following configuration code shows how you can configure two entity managers
63
62
mappings :
64
63
Customer :
65
64
is_bundle : false
66
- type : annotation
67
65
dir : ' %kernel.project_dir%/src/Entity/Customer'
68
66
prefix : ' App\Entity\Customer'
69
67
alias : Customer
@@ -104,7 +102,6 @@ The following configuration code shows how you can configure two entity managers
104
102
<doctrine : mapping
105
103
name =" Main"
106
104
is_bundle =" false"
107
- type =" annotation"
108
105
dir =" %kernel.project_dir%/src/Entity/Main"
109
106
prefix =" App\Entity\Main"
110
107
alias =" Main"
@@ -115,7 +112,6 @@ The following configuration code shows how you can configure two entity managers
115
112
<doctrine : mapping
116
113
name =" Customer"
117
114
is_bundle =" false"
118
- type =" annotation"
119
115
dir =" %kernel.project_dir%/src/Entity/Customer"
120
116
prefix =" App\Entity\Customer"
121
117
alias =" Customer"
@@ -154,7 +150,6 @@ The following configuration code shows how you can configure two entity managers
154
150
$emDefault->connection('default');
155
151
$emDefault->mapping('Main')
156
152
->isBundle(false)
157
- ->type('annotation')
158
153
->dir('%kernel.project_dir%/src/Entity/Main')
159
154
->prefix('App\Entity\Main')
160
155
->alias('Main');
@@ -163,7 +158,6 @@ The following configuration code shows how you can configure two entity managers
163
158
$emCustomer->connection('customer');
164
159
$emCustomer->mapping('Customer')
165
160
->isBundle(false)
166
- ->type('annotation')
167
161
->dir('%kernel.project_dir%/src/Entity/Customer')
168
162
->prefix('App\Entity\Customer')
169
163
->alias('Customer')
0 commit comments