aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/src/Sql/Internal/Select.php
diff options
context:
space:
mode:
Diffstat (limited to 'services/app/src/Sql/Internal/Select.php')
-rw-r--r--services/app/src/Sql/Internal/Select.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/app/src/Sql/Internal/Select.php b/services/app/src/Sql/Internal/Select.php
index cf3f77a..d5943aa 100644
--- a/services/app/src/Sql/Internal/Select.php
+++ b/services/app/src/Sql/Internal/Select.php
@@ -33,7 +33,7 @@ final class Select
public function __construct(
private readonly QueryBuilder $sql,
- private readonly string $table,
+ private readonly string|Select $table,
) {
}
@@ -94,7 +94,7 @@ final class Select
/**
* @internal
*/
- public function _getTable(): string
+ public function _getTable(): string|Select
{
return $this->table;
}