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