Skip to content

UPGRADING: Rename PDO driver-specific class names #14430

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions UPGRADING
Original file line number Diff line number Diff line change
Expand Up @@ -259,22 +259,22 @@ PHP 8.4 UPGRADE NOTES
or by invoking their constructor directly.

- PDO_DBLIB:
. Added class PdoDbLib.
. Added class Pdo\DbLib.

- PDO_FIREBIRD:
. Added class PdoFirebird.
. Added class Pdo\Firebird.

- PDO_MYSQL:
. Added class PdoMysql.
. Added class Pdo\Mysql.

- PDO_ODBC:
. Added class PdoOdbc.
. Added class Pdo\Odbc.

- PDO_PGSQL:
. Added class PdoPgsql.
. Added class Pdo\Pgsql.

- PDO_SQLITE:
. Added class PdoSqlite.
. Added class Pdo\Sqlite.

- POSIX:
. Added constant POSIX_SC_CHILD_MAX
Expand Down