File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -347,23 +347,23 @@ providers until the user is found:
347
347
return static function (SecurityConfig $security): void {
348
348
// ...
349
349
350
- $backendProvider = $ security->provider('backend_users')
350
+ $security->provider('backend_users')
351
351
->ldap()
352
352
// ...
353
353
;
354
354
355
- $legacyProvider = $ security->provider('legacy_users')
355
+ $security->provider('legacy_users')
356
356
->entity()
357
357
// ...
358
358
;
359
359
360
- $userProvider = $ security->provider('users')
360
+ $security->provider('users')
361
361
->entity()
362
362
// ...
363
363
;
364
364
365
- $allProviders = $ security->provider('all_users')->chain()
366
- ->providers([$backendProvider, $legacyProvider, $userProvider ])
365
+ $security->provider('all_users')->chain()
366
+ ->providers(['backend_users', 'legacy_users', 'users' ])
367
367
;
368
368
};
369
369
You can’t perform that action at this time.
0 commit comments