From c833e12c1472a81c45df4834f24ad9692e00da50 Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Sat, 9 Aug 2025 11:16:13 +0300 Subject: [PATCH 1/2] Use consistent phrasing for AppServiceProvider --- passwords.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passwords.md b/passwords.md index 712b80afb8e..b5faa04ff42 100644 --- a/passwords.md +++ b/passwords.md @@ -217,7 +217,7 @@ Schedule::command('auth:clear-resets')->everyFifteenMinutes(); #### Reset Link Customization -You may customize the password reset link URL using the `createUrlUsing` method provided by the `ResetPassword` notification class. This method accepts a closure which receives the user instance that is receiving the notification as well as the password reset link token. Typically, you should call this method from your `App\Providers\AppServiceProvider` service provider's `boot` method: +You may customize the password reset link URL using the `createUrlUsing` method provided by the `ResetPassword` notification class. This method accepts a closure which receives the user instance that is receiving the notification as well as the password reset link token. Typically, you should call this method from the `boot` method of your `AppServiceProvider`: ```php use App\Models\User; From 13fb731da7267bcb1c87b02d613cff94d6effbd4 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 10 Aug 2025 19:00:43 -0500 Subject: [PATCH 2/2] Update passwords.md --- passwords.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passwords.md b/passwords.md index b5faa04ff42..150d5f0c8b4 100644 --- a/passwords.md +++ b/passwords.md @@ -217,7 +217,7 @@ Schedule::command('auth:clear-resets')->everyFifteenMinutes(); #### Reset Link Customization -You may customize the password reset link URL using the `createUrlUsing` method provided by the `ResetPassword` notification class. This method accepts a closure which receives the user instance that is receiving the notification as well as the password reset link token. Typically, you should call this method from the `boot` method of your `AppServiceProvider`: +You may customize the password reset link URL using the `createUrlUsing` method provided by the `ResetPassword` notification class. This method accepts a closure which receives the user instance that is receiving the notification as well as the password reset link token. Typically, you should call this method from the `boot` method of your application's `AppServiceProvider`: ```php use App\Models\User;