public function build() { // Building the parsed part of the query (if any). $query = parent::build() . ' '; // Rebuilding the unknown part from tokens. foreach ($this->unknown as $token) { $query .= $token->token; } return $query; }