From 5c0e48331408e3e7e8f14371f2f4b33f426a0563 Mon Sep 17 00:00:00 2001 From: Mikhail Alferov Date: Wed, 4 Feb 2026 08:19:31 +0300 Subject: [PATCH 1/2] incompatible.xml Fix a method name --- appendices/migration85/incompatible.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appendices/migration85/incompatible.xml b/appendices/migration85/incompatible.xml index 917b68ac9c88..f0935816ded6 100644 --- a/appendices/migration85/incompatible.xml +++ b/appendices/migration85/incompatible.xml @@ -334,7 +334,7 @@ Attempting to call PDOStatement::setFetchMode during a call to PDO::fetch, PDO::fetchObject, - PDO::fetchAll, for example using tricks such as + PDOStatement::fetchAll, for example using tricks such as passing the statement object as a constructor argument when fetching into an object, will now throw an Error. @@ -357,7 +357,7 @@ A ValueError is now thrown if PDO::FETCH_INTO is used as a fetch mode in - PDO::fetchAll, + PDOStatement::fetchAll, similar to PDO::FETCH_LAZY. From 36585ae2788c62a19c255a7ae13276712965f1a4 Mon Sep 17 00:00:00 2001 From: Mikhail Alferov Date: Wed, 4 Feb 2026 08:22:29 +0300 Subject: [PATCH 2/2] Update incompatible.xml Fix a method names --- appendices/migration85/incompatible.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appendices/migration85/incompatible.xml b/appendices/migration85/incompatible.xml index f0935816ded6..fde91fe519ff 100644 --- a/appendices/migration85/incompatible.xml +++ b/appendices/migration85/incompatible.xml @@ -332,8 +332,8 @@ Attempting to call PDOStatement::setFetchMode during - a call to PDO::fetch, - PDO::fetchObject, + a call to PDOStatement::fetch, + PDOStatement::fetchObject, PDOStatement::fetchAll, for example using tricks such as passing the statement object as a constructor argument when fetching into an object, will now throw an Error.