File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -1276,8 +1276,9 @@ a new provider that chains the two together:
1276
1276
chain :
1277
1277
providers : [in_memory, user_db]
1278
1278
in_memory :
1279
- users :
1280
- foo : { password: test }
1279
+ memory :
1280
+ users :
1281
+ foo : { password: test }
1281
1282
user_db :
1282
1283
entity : { class: Acme\UserBundle\Entity\User, property: username }
1283
1284
@@ -1292,7 +1293,9 @@ a new provider that chains the two together:
1292
1293
</chain >
1293
1294
</provider >
1294
1295
<provider name =" in_memory" >
1295
- <user name =" foo" password =" test" />
1296
+ <memory >
1297
+ <user name =" foo" password =" test" />
1298
+ </memory >
1296
1299
</provider >
1297
1300
<provider name =" user_db" >
1298
1301
<entity class =" Acme\UserBundle\Entity\User" property =" username" />
@@ -1310,8 +1313,10 @@ a new provider that chains the two together:
1310
1313
),
1311
1314
),
1312
1315
'in_memory' => array(
1313
- 'users' => array(
1314
- 'foo' => array('password' => 'test'),
1316
+ 'memory' => array(
1317
+ 'users' => array(
1318
+ 'foo' => array('password' => 'test'),
1319
+ ),
1315
1320
),
1316
1321
),
1317
1322
'user_db' => array(
You can’t perform that action at this time.
0 commit comments