From 47557b23596cf89598e322b4136eeb1560d40176 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 f44f8e47555..17ddd8832d9 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: