File "LockMode.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/doctrine/dbal/src/LockMode.php
File size: 214 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace Doctrine\DBAL;
/**
* Contains all supported lock modes.
*/
enum LockMode
{
case NONE;
case OPTIMISTIC;
case PESSIMISTIC_READ;
case PESSIMISTIC_WRITE;
}