Unverified Commit 4b2fed55 authored by Sergei Morozov's avatar Sergei Morozov Committed by GitHub

Merge pull request #4064 from morozov/remove-portability-platform-constants

Remove platform-specific portability mode constants
parents a2fcaeef 7b937a82
# Upgrade to 3.0
## Removed `Portability\Connection::PORTABILITY_{PLATFORM}` constants`
The platform-specific portability constants were internal implementation details which are longer relevant.
## BC BREAK changes in fetching statement results
1. The `Statement` interface no longer extends `ResultStatement`.
......
......@@ -25,19 +25,6 @@ class Connection extends \Doctrine\DBAL\Connection
public const PORTABILITY_EMPTY_TO_NULL = 4;
public const PORTABILITY_FIX_CASE = 8;
/**#@+
*
* @deprecated Will be removed as internal implementation details.
*/
public const PORTABILITY_DB2 = 13;
public const PORTABILITY_ORACLE = 9;
public const PORTABILITY_POSTGRESQL = 13;
public const PORTABILITY_SQLITE = 13;
public const PORTABILITY_OTHERVENDORS = 12;
public const PORTABILITY_SQLANYWHERE = 13;
public const PORTABILITY_SQLSRV = 13;
/**#@-*/
/** @var Converter */
private $converter;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment