SqlParser\Statements\NotImplementedStatement::build PHP 메소드

build() 공개 메소드

public build ( ) : string
리턴 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;
    }
NotImplementedStatement