File "TransactionIsolationLevel.php"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/dbal/lib/Doctrine/DBAL/TransactionIsolationLevel.php
File size: 320 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\DBAL;
if (!defined('ABSPATH')) exit;
final class TransactionIsolationLevel
{
 public const READ_UNCOMMITTED = 1;
 public const READ_COMMITTED = 2;
 public const REPEATABLE_READ = 3;
 public const SERIALIZABLE = 4;
 private function __construct()
 {
 }
}