From 03868ae784b1308de2fbeb854345a415117875f5 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Sun, 8 Jun 2025 12:32:38 +0200 Subject: [PATCH] fix: MySQL->for() deprecation notice since version 3.5.7 (#47) Wrong version referenced in the deprecation notice added in #46. Reviewed-on: https://codeberg.org/vlw/php-mysql/pulls/47 --- src/MySQL.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MySQL.php b/src/MySQL.php index 5d7c2e6..273d4ea 100644 --- a/src/MySQL.php +++ b/src/MySQL.php @@ -78,7 +78,7 @@ #[\Deprecated( message: "use MySQL->from() instead", - since: "2.1.5", + since: "3.5.7", )] public function for(string $table): self { $this->from($table);