From 1cffe0d5652fa22ae6aba2d63b703b2230a8385f Mon Sep 17 00:00:00 2001 From: Maxim Smakouz Date: Fri, 12 May 2023 23:57:26 +0300 Subject: [PATCH] Describe method `forUpdate` in the `Select` phpdoc (#413) --- src/Select.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Select.php b/src/Select.php index 2cd77d99..2d43b2ad 100644 --- a/src/Select.php +++ b/src/Select.php @@ -32,6 +32,7 @@ * @method $this andHaving(...$args); * @method $this orHaving(...$args); * @method $this orderBy($expression, $direction = 'ASC'); + * @method $this forUpdate() * @method mixed avg($identifier) Perform aggregation (AVG) based on column or expression value. * @method mixed min($identifier) Perform aggregation (MIN) based on column or expression value. * @method mixed max($identifier) Perform aggregation (MAX) based on column or expression value.