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.
1 parent b24490d commit aaaa6e1Copy full SHA for aaaa6e1
src/Http/Controllers/DeveloperLoginsController.php
@@ -28,7 +28,8 @@ public function loginAs(LoginAsRequest $request): RedirectResponse
28
29
$credentials = $request->validated('credentials');
30
if (! in_array($credentials, $this->plugin->getUsers())) {
31
- throw new ImplementationException('The user is not found in the defined users, please check the configuration of the plugin.');
+
32
+ throw new ImplementationException('The user is not found in the defined users, please check the configuration of the plugin.');
33
}
34
35
$model = (new ($this->plugin->getModelClass()))
0 commit comments