ArrayParameters
2 years ago
Cache
9 months ago
Driver
9 months ago
Event
2 years ago
Exception
9 months ago
Id
2 years ago
Logging
2 years ago
Platforms
9 months ago
Portability
2 years ago
Query
2 years ago
SQL
9 months ago
Schema
8 months ago
Types
9 months ago
ArrayParameterType.php
2 years ago
ColumnCase.php
2 years ago
Configuration.php
9 months ago
Connection.php
9 months ago
ConnectionException.php
2 years ago
Driver.php
2 years ago
DriverManager.php
2 years ago
Events.php
2 years ago
Exception.php
2 years ago
ExpandArrayParameters.php
2 years ago
FetchMode.php
2 years ago
LockMode.php
2 years ago
ParameterType.php
2 years ago
Query.php
2 years ago
Result.php
2 years ago
Statement.php
2 years ago
TransactionIsolationLevel.php
2 years ago
VersionAwarePlatformDriver.php
2 years ago
index.php
2 years ago
TransactionIsolationLevel.php
15 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\DBAL; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | final class TransactionIsolationLevel |
| 6 | { |
| 7 | public const READ_UNCOMMITTED = 1; |
| 8 | public const READ_COMMITTED = 2; |
| 9 | public const REPEATABLE_READ = 3; |
| 10 | public const SERIALIZABLE = 4; |
| 11 | private function __construct() |
| 12 | { |
| 13 | } |
| 14 | } |
| 15 |