File "ConflictResolutionMode.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/doctrine/dbal/src/Query/ForUpdate/ConflictResolutionMode.php
File size: 256 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Query\ForUpdate;

enum ConflictResolutionMode
{
    /**
     * Wait for the row to be unlocked
     */
    case ORDINARY;

    /**
     * Skip the row if it is locked
     */
    case SKIP_LOCKED;
}