from; } public function getAlias(): string { return $this->alias; } public function getIndexBy(): string|null { return $this->indexBy; } public function __toString(): string { return $this->from . ' ' . $this->alias . ($this->indexBy ? ' INDEX BY ' . $this->indexBy : ''); } }