Expression
2 years ago
ForUpdate
2 years ago
ForUpdate.php
2 years ago
Limit.php
2 years ago
QueryBuilder.php
2 years ago
QueryException.php
2 years ago
SelectQuery.php
2 years ago
index.php
2 years ago
ForUpdate.php
17 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\DBAL\Query; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | final class ForUpdate |
| 6 | { |
| 7 | private int $conflictResolutionMode; |
| 8 | public function __construct(int $conflictResolutionMode) |
| 9 | { |
| 10 | $this->conflictResolutionMode = $conflictResolutionMode; |
| 11 | } |
| 12 | public function getConflictResolutionMode() : int |
| 13 | { |
| 14 | return $this->conflictResolutionMode; |
| 15 | } |
| 16 | } |
| 17 |