File tree Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -156,23 +156,23 @@ The following configuration code shows how you can configure two entity managers
156
156
'connection' => 'default',
157
157
'mappings' => [
158
158
'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',
164
164
]
165
165
],
166
166
],
167
167
'customer' => [
168
168
'connection' => 'customer',
169
169
'mappings' => [
170
170
'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',
176
176
]
177
177
],
178
178
],
Original file line number Diff line number Diff line change @@ -279,6 +279,10 @@ important section is ``firewalls``:
279
279
],
280
280
]);
281
281
282
+ .. versionadded :: 4.4
283
+
284
+ The ``anonymous: lazy `` option was introduced in Symfony 4.4.
285
+
282
286
A "firewall" is your authentication system: the configuration below it defines
283
287
*how * your users will be able to authenticate (e.g. login form, API token, etc).
284
288
You can’t perform that action at this time.
0 commit comments