diff --git a/UPGRADE.md b/UPGRADE.md index 4b552e980dd..eb92850dc1f 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -373,6 +373,10 @@ Please use other database client applications for import, e.g.: # Upgrade to 2.11 +## Deprecated `Abstraction\Result` + +The usage of the `Doctrine\DBAL\Abstraction\Result` interface is deprecated. In DBAL 3.0, the statement result at the wrapper level will be represented by the `Doctrine\DBAL\Result` class. + ## Deprecated the functionality of dropping client connections when dropping a database The corresponding `getDisallowDatabaseConnectionsSQL()` and `getCloseActiveDatabaseConnectionsSQL` methods diff --git a/src/Abstraction/Result.php b/src/Abstraction/Result.php index 93d0e4643e0..88c7bfb5207 100644 --- a/src/Abstraction/Result.php +++ b/src/Abstraction/Result.php @@ -11,6 +11,8 @@ /** * Abstraction-level statement execution result. Provides additional methods on top * of the driver-level interface. + * + * @deprecated */ interface Result extends DriverResult {