From 48a69beb606cb58c5071cfb374ad862537ffc547 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Thu, 18 Nov 2021 13:24:54 +0000 Subject: [PATCH 1/2] Adds `Application::storagePath` upgrade notes --- upgrade.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/upgrade.md b/upgrade.md index 096a7b51a68..3cab2e954af 100644 --- a/upgrade.md +++ b/upgrade.md @@ -5,6 +5,18 @@ ## Upgrading To 9.0 From 8.x + +### Application + + +#### The `Application` Contract + +**Likelihood Of Impact: Low** + +The `storagePath` method of the `Application` interface has been updated to accept an `$path`. If you are implementing this interface you should update your implementation accordingly: + + public function storagePath($path = ''); + ### Queue From 14c9222ae0dd93f62e941d3928fc7eef29c79ddc Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 18 Nov 2021 08:42:24 -0600 Subject: [PATCH 2/2] Update upgrade.md --- upgrade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgrade.md b/upgrade.md index 3cab2e954af..9d1d26aa0b4 100644 --- a/upgrade.md +++ b/upgrade.md @@ -13,7 +13,7 @@ **Likelihood Of Impact: Low** -The `storagePath` method of the `Application` interface has been updated to accept an `$path`. If you are implementing this interface you should update your implementation accordingly: +The `storagePath` method of the `Illuminate\Contracts\Foundation\Application` interface has been updated to accept a `$path` argument. If you are implementing this interface you should update your implementation accordingly: public function storagePath($path = '');