From 2a1197114e47a2442d53d5f64bd2fad9ea5738b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Barto=C5=A1?= Date: Mon, 5 Jun 2023 00:12:15 +0200 Subject: [PATCH] Fluent: add union() and unionAll() --- src/Dibi/Fluent.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Dibi/Fluent.php b/src/Dibi/Fluent.php index 6a5dce96..1a58a5a6 100644 --- a/src/Dibi/Fluent.php +++ b/src/Dibi/Fluent.php @@ -27,6 +27,8 @@ * @method Fluent innerJoin(...$table) * @method Fluent rightJoin(...$table) * @method Fluent outerJoin(...$table) + * @method Fluent union(Fluent $fluent) + * @method Fluent unionAll(Fluent $fluent) * @method Fluent as(...$field) * @method Fluent on(...$cond) * @method Fluent and(...$cond)