Skip to content

Commit

Permalink
fix(migration): fix deprecated functionality (#766)
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanmaurits authored Jul 24, 2023
1 parent d1fcdcc commit 5e18dad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Setup/Methods/Select.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 5e18dad

Please sign in to comment.