We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the lmc_user config, the key auth_adapters is expecting an associative array with the following signature:
lmc_user
auth_adapters
'lmc_user' => [ 'auth_adapters' => [ 100 => 'firtsadaptername`, // where 100 is the priority and is an integer 200 => 'secondadaptername', ], ]
if one was to pass a list array, then it would be treated the same as:
'lmc_user' => [ 'auth_adapters' => [ 0 => 'firtsadaptername`, 1 => 'secondadaptername', ], ]
Althought, it would defeat the purpose to use a list array, there should be a assertion in the factory to detect and reject list arrays.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the
lmc_user
config, the keyauth_adapters
is expecting an associative array with the following signature:if one was to pass a list array, then it would be treated the same as:
Althought, it would defeat the purpose to use a list array, there should be a assertion in the factory to detect and reject list arrays.
The text was updated successfully, but these errors were encountered: