We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2df651f + 9a091ea commit 3ae3563Copy full SHA for 3ae3563
src/Authenticator/AuthenticatorCollection.php
@@ -84,7 +84,12 @@ protected function _resolveClassName(string $class): ?string
84
*/
85
protected function _throwMissingClassError(string $class, ?string $plugin): void
86
{
87
+ if ($plugin) {
88
+ $class = $plugin . '.' . $class;
89
+ }
90
+
91
$message = sprintf('Authenticator class `%s` was not found.', $class);
92
93
throw new RuntimeException($message);
94
}
95
0 commit comments