Skip to content

Commit de058b4

Browse files
committed
NEWS, UPGRADING: refer to namespaced Pdo\Xxx instead of PdoXxx
Completes https://externals.io/message/123166, aligns #14299
1 parent e7f1987 commit de058b4

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

NEWS

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -159,32 +159,32 @@ PHP NEWS
159159

160160
- PDO_DBLIB:
161161
. Fixed setAttribute and getAttribute. (SakiTakamachi)
162-
. Added class PdoDbLib. (danack, kocsismate)
162+
. Added class Pdo\DbLib. (danack, kocsismate)
163163

164164
- PDO_FIREBIRD:
165165
. Fixed setAttribute and getAttribute. (SakiTakamachi)
166166
. Feature: Add transaction isolation level and mode settings to pdo_firebird.
167167
(SakiTakamachi)
168-
. Added class PdoFirebird. (danack, kocsismate)
168+
. Added class Pdo\Firebird. (danack, kocsismate)
169169

170170
- PDO_MYSQL:
171171
. Fixed setAttribute and getAttribute. (SakiTakamachi)
172-
. Added class PdoMysql. (danack, kocsismate)
172+
. Added class Pdo\Mysql. (danack, kocsismate)
173173

174174
- PDO_ODBC:
175-
. Added class PdoOdbc. (danack, kocsismate)
175+
. Added class Pdo\Odbc. (danack, kocsismate)
176176

177177
- PDO_PGSQL:
178178
. Fixed GH-12423, DSN credentials being prioritized over the user/password
179179
PDO constructor arguments. (SakiTakamachi)
180180
. Fixed native float support with pdo_pgsql query results. (Yurunsoft)
181-
. Added class PdoPgsql. (danack, kocsismate)
181+
. Added class Pdo\Pgsql. (danack, kocsismate)
182182
. Retrieve the memory usage of the query result resource. (KentarouTakeda)
183-
. Added PDO::pgsqlSetNoticeCallBack method to receive DB notices.
183+
. Added Pdo\Pgsql::setNoticeCallBack method to receive DB notices.
184184
(outtersg)
185185

186186
- PDO_SQLITE:
187-
. Added class PdoSqlite. (danack, kocsismate)
187+
. Added class Pdo\Sqlite. (danack, kocsismate)
188188
. Fixed bug #81227 (PDO::inTransaction reports false when in transaction).
189189
(nielsdos)
190190

UPGRADING

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -259,22 +259,22 @@ PHP 8.4 UPGRADE NOTES
259259
or by invoking their constructor directly.
260260

261261
- PDO_DBLIB:
262-
. Added class PdoDbLib.
262+
. Added class Pdo\DbLib.
263263

264264
- PDO_FIREBIRD:
265-
. Added class PdoFirebird.
265+
. Added class Pdo\Firebird.
266266

267267
- PDO_MYSQL:
268-
. Added class PdoMysql.
268+
. Added class Pdo\Mysql.
269269

270270
- PDO_ODBC:
271-
. Added class PdoOdbc.
271+
. Added class Pdo\Odbc.
272272

273273
- PDO_PGSQL:
274-
. Added class PdoPgsql.
274+
. Added class Pdo\Pgsql.
275275

276276
- PDO_SQLITE:
277-
. Added class PdoSqlite.
277+
. Added class Pdo\Sqlite.
278278

279279
- POSIX:
280280
. Added constant POSIX_SC_CHILD_MAX
@@ -541,7 +541,7 @@ PHP 8.4 UPGRADE NOTES
541541
energy consumption) of the current process and pcntl_setqos_class to set it.
542542

543543
- PDO_PGSQL:
544-
. Added PdoPgsql::setNoticeCallback() to allow a callback to be triggered on
544+
. Added Pdo\Pgsql::setNoticeCallback() to allow a callback to be triggered on
545545
every notice sent (e.g. RAISE NOTICE).
546546

547547
- PGSQL:

0 commit comments

Comments
 (0)