Skip to content

Commit 043fb6e

Browse files
committed
fix: missing return statements added
1 parent c50ec7d commit 043fb6e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/FortifyAdminLTEPresetServiceProvider.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,27 @@ public function boot()
2626

2727
if (class_exists(Fortify::class)) {
2828
Fortify::loginView(function () {
29-
view('auth.login');
29+
return view('auth.login');
3030
});
3131

3232
Fortify::registerView(function () {
33-
view('auth.register');
33+
return view('auth.register');
3434
});
3535

3636
Fortify::confirmPasswordView(function () {
37-
view('auth.passwords.confirm');
37+
return view('auth.passwords.confirm');
3838
});
3939

4040
Fortify::requestPasswordResetLinkView(function () {
41-
view('auth.passwords.email');
41+
return view('auth.passwords.email');
4242
});
4343

4444
Fortify::resetPasswordView(function (Request $request) {
45-
view('auth.passwords.reset');
45+
return view('auth.passwords.reset');
4646
});
4747

4848
Fortify::verifyEmailView(function () {
49-
view('auth.verify');
49+
return view('auth.verify');
5050
});
5151
}
5252
}

0 commit comments

Comments
 (0)