Pinq\Tests\Integration\Providers\DSL\Implementation\English\QueryCompilation::appendOtherQuery PHP Méthode

appendOtherQuery() public méthode

public appendOtherQuery ( CompiledQuery $compilation )
$compilation CompiledQuery
    public function appendOtherQuery(CompiledQuery $compilation)
    {
        $this->appendLine('[');
        foreach (explode(PHP_EOL, $compilation) as $line) {
            $this->appendLine('    ' . $line);
        }
        $this->append(']');
    }