queryBuilder = $queryBuilder; } public function set(string $side, /* QueryBuilder|string */ $table, string $field, /* QueryBuilder|string */ $value) { $this->side = $side; $this->table = $table; $this->field = $field; $this->value = $value; } public function render() : string { return $this->renderSegments([ $this->side, static::SQL_TOKEN, $this->table, $this->attachment, $this->field, "=", $this->value ]); } }