alias = $alias; } /** * Get a table alias which is unique to the parent SelectQueryBuilder * * @return string */ protected function getAutoAlias() { return $this->alias . '_' . ( $this->nextAutoAlias++ ); } /** * @internal * @return array */ public function getRawTables() { return $this->tables; } /** * @internal * @return array */ public function getRawJoinConds() { return $this->joinConds; } /** * @internal * @return string */ public function getAlias() { return $this->alias; } }