aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/src/Sql/Internal/Join.php
diff options
context:
space:
mode:
Diffstat (limited to 'services/app/src/Sql/Internal/Join.php')
-rw-r--r--services/app/src/Sql/Internal/Join.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/services/app/src/Sql/Internal/Join.php b/services/app/src/Sql/Internal/Join.php
new file mode 100644
index 0000000..4c85fd8
--- /dev/null
+++ b/services/app/src/Sql/Internal/Join.php
@@ -0,0 +1,18 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Nsfisis\Albatross\Sql\Internal;
+
+final class Join
+{
+ /**
+ * @param 'LEFT JOIN' $type
+ */
+ public function __construct(
+ public readonly string $type,
+ public readonly string $table,
+ public readonly string $on,
+ ) {
+ }
+}