From 4f61c01f123a4f9a7f0cfed93046e0db48136b73 Mon Sep 17 00:00:00 2001 From: Igor Kunda <5486970+restuff@users.noreply.github.com> Date: Tue, 1 Apr 2025 12:28:46 +0300 Subject: [PATCH 1/2] Add \Illuminate\Database\Schema\Blueprint changed constructor signature description --- upgrade.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/upgrade.md b/upgrade.md index e4e38079ad2..8bf31e913af 100644 --- a/upgrade.md +++ b/upgrade.md @@ -181,6 +181,13 @@ $table = Schema::getTableListing(schema: 'main', schemaQualified: false); The `db:table` and `db:show` commands now output the results of all schemas on MySQL, MariaDB, and SQLite, just like PostgreSQL and SQL Server. + +#### Updated `Blueprint` Constructor Signature + +**Likelihood Of Impact: Very Low** + +The constructor of the `Illuminate\Database\Schema\Blueprint` class now expects `Illuminate\Database\Connection` `$connection` as first argument. + ### Eloquent From 2334276cd9bb4b6b65ef49be4e4c3b776fb09bd7 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 1 Apr 2025 09:23:01 -0500 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 8bf31e913af..2c3ddb3e309 100644 --- a/upgrade.md +++ b/upgrade.md @@ -186,7 +186,7 @@ The `db:table` and `db:show` commands now output the results of all schemas on M **Likelihood Of Impact: Very Low** -The constructor of the `Illuminate\Database\Schema\Blueprint` class now expects `Illuminate\Database\Connection` `$connection` as first argument. +The constructor of the `Illuminate\Database\Schema\Blueprint` class now expects an instance of `Illuminate\Database\Connection` as its first argument. ### Eloquent