File "LockMode.php"

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

<?php
namespace MailPoetVendor\Doctrine\DBAL;
if (!defined('ABSPATH')) exit;
class LockMode
{
 public const NONE = 0;
 public const OPTIMISTIC = 1;
 public const PESSIMISTIC_READ = 2;
 public const PESSIMISTIC_WRITE = 4;
 private final function __construct()
 {
 }
}