build() public method

Builds the string representation of this statement.
public build ( ) : string
return string
 /**
  * @return string
  */
 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;
 }