Skip to content

Commit aaaa6e1

Browse files
committed
Test workflow
1 parent b24490d commit aaaa6e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Http/Controllers/DeveloperLoginsController.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ public function loginAs(LoginAsRequest $request): RedirectResponse
2828

2929
$credentials = $request->validated('credentials');
3030
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.');
31+
32+
throw new ImplementationException('The user is not found in the defined users, please check the configuration of the plugin.');
3233
}
3334

3435
$model = (new ($this->plugin->getModelClass()))

0 commit comments

Comments
 (0)