File "ForUpdate.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/doctrine/deprecations/lib/ForUpdate.php
File size: 418 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Query;
use Doctrine\DBAL\Query\ForUpdate\ConflictResolutionMode;
/** @internal */
final class ForUpdate
{
public function __construct(
private readonly ConflictResolutionMode $conflictResolutionMode,
) {
}
public function getConflictResolutionMode(): ConflictResolutionMode
{
return $this->conflictResolutionMode;
}
}