summaryrefslogtreecommitdiff
path: root/vendor/doctrine/dbal/src/Query/ForUpdate/ConflictResolutionMode.php
blob: f45f774bddc9e0b3f620a5fed745308894f2c7a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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;
}