aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/src/Sql/Internal/Select.php
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-03-09 11:04:51 +0900
committernsfisis <nsfisis@gmail.com>2024-03-09 14:07:27 +0900
commite014d9778f739956104caf686c70639914045281 (patch)
treeeccd80968b787e88d239644be8d21ce8ecec2c4c /services/app/src/Sql/Internal/Select.php
parent8eaa76b2364b64ba32b10263f36404b472e10a28 (diff)
downloadphperkaigi-2024-albatross-e014d9778f739956104caf686c70639914045281.tar.gz
phperkaigi-2024-albatross-e014d9778f739956104caf686c70639914045281.tar.zst
phperkaigi-2024-albatross-e014d9778f739956104caf686c70639914045281.zip
add /admin/stats/
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;
}