File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public function boot(): void
3636 /**
3737 * Configure Fortify actions.
3838 */
39- protected function configureActions (): void
39+ private function configureActions (): void
4040 {
4141 Fortify::resetUserPasswordsUsing (ResetUserPassword::class);
4242 Fortify::createUsersUsing (CreateNewUser::class);
@@ -45,7 +45,7 @@ protected function configureActions(): void
4545 /**
4646 * Configure Fortify views.
4747 */
48- protected function configureViews (): void
48+ private function configureViews (): void
4949 {
5050 Fortify::loginView (fn (Request $ request ) => Inertia::render ('auth/Login ' , [
5151 'canResetPassword ' => Features::enabled (Features::resetPasswords ()),
@@ -74,9 +74,9 @@ protected function configureViews(): void
7474 }
7575
7676 /**
77- * Configure rate limiting for authentication .
77+ * Configure rate limiting.
7878 */
79- protected function configureRateLimiting (): void
79+ private function configureRateLimiting (): void
8080 {
8181 RateLimiter::for ('two-factor ' , function (Request $ request ) {
8282 return Limit::perMinute (5 )->by ($ request ->session ()->get ('login.id ' ));
You can’t perform that action at this time.
0 commit comments