From 7a5ed10255a01b6481617d9b01a8ac9c977213cf Mon Sep 17 00:00:00 2001 From: Sergei Morozov Date: Wed, 11 Apr 2018 20:27:31 -0700 Subject: [PATCH] [DBAL-3079] Updated upgrade documentation --- UPGRADE.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UPGRADE.md b/UPGRADE.md index 5a70ba992e5..e740af59ed5 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -61,7 +61,8 @@ The Doctrine\DBAL\Version class is no longer available: please refrain from chec ## BC BREAK: the PDO symbols are no longer part of the DBAL API 1. The support of `PDO::PARAM_*`, `PDO::FETCH_*`, `PDO::CASE_*` and `PDO::PARAM_INPUT_OUTPUT` constants in the DBAL API is removed. -2. `\Doctrine\DBAL\Driver\PDOStatement` does not extend `\PDOStatement` anymore. +2. `\Doctrine\DBAL\Driver\PDOConnection` does not extend `\PDO` anymore. Please use `\Doctrine\DBAL\Driver\PDOConnection::getWrappedConnection()` to access the underlying `PDO` object. +3. `\Doctrine\DBAL\Driver\PDOStatement` does not extend `\PDOStatement` anymore. Before: