type = $type; $this->table = $table; $this->columnA = $columnA; $this->columnB = $columnB; $this->tableAlias = $tableAlias; } public function getType(): string { return $this->type; } public function getTable(): string { return $this->table; } public function getColumnA(): string { return $this->columnA; } public function getColumnB(): string { return $this->columnB; } public function getTableAlias(): ?string { return $this->tableAlias; } }