Unverified Commit d2932986 authored by Michael Moravec's avatar Michael Moravec Committed by Sergei Morozov

Remove deprecated Connection::TRANSACTION_* constants

parent 6ed32a9a
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
## BC BREAK Removed previously deprecated features ## BC BREAK Removed previously deprecated features
* Removed `json_array` type and all associated hacks. * Removed `json_array` type and all associated hacks.
* Removed `Connection::TRANSACTION_*` constants.
## BC BREAK changes the `Driver::connect()` signature ## BC BREAK changes the `Driver::connect()` signature
......
...@@ -40,34 +40,6 @@ use function key; ...@@ -40,34 +40,6 @@ use function key;
*/ */
class Connection implements DriverConnection class Connection implements DriverConnection
{ {
/**
* Constant for transaction isolation level READ UNCOMMITTED.
*
* @deprecated Use TransactionIsolationLevel::READ_UNCOMMITTED.
*/
public const TRANSACTION_READ_UNCOMMITTED = TransactionIsolationLevel::READ_UNCOMMITTED;
/**
* Constant for transaction isolation level READ COMMITTED.
*
* @deprecated Use TransactionIsolationLevel::READ_COMMITTED.
*/
public const TRANSACTION_READ_COMMITTED = TransactionIsolationLevel::READ_COMMITTED;
/**
* Constant for transaction isolation level REPEATABLE READ.
*
* @deprecated Use TransactionIsolationLevel::REPEATABLE_READ.
*/
public const TRANSACTION_REPEATABLE_READ = TransactionIsolationLevel::REPEATABLE_READ;
/**
* Constant for transaction isolation level SERIALIZABLE.
*
* @deprecated Use TransactionIsolationLevel::SERIALIZABLE.
*/
public const TRANSACTION_SERIALIZABLE = TransactionIsolationLevel::SERIALIZABLE;
/** /**
* Represents an array of ints to be expanded by Doctrine SQL parsing. * Represents an array of ints to be expanded by Doctrine SQL parsing.
*/ */
......
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