From 5e18dadd6adcd1f83d7a19dabd32d5bb027be0ba Mon Sep 17 00:00:00 2001 From: dylanmaurits <76950827+dylanmaurits@users.noreply.github.com> Date: Mon, 24 Jul 2023 10:44:29 +0200 Subject: [PATCH] fix(migration): fix deprecated functionality (#766) --- Setup/Methods/Select.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Setup/Methods/Select.php b/Setup/Methods/Select.php index df5fa9c2..10bcbf9f 100644 --- a/Setup/Methods/Select.php +++ b/Setup/Methods/Select.php @@ -122,7 +122,7 @@ public function where(string ...$where): self */ public function from(string $table, ?string $alias = null): self { - $this->from[] = null === $alias ? $table : "${table} AS ${alias}"; + $this->from[] = null === $alias ? $table : "{$table} AS {$alias}"; return $this; }