Pinq\Tests\Integration\Providers\DSL\Implementation\English\QueryCompilation::appendLine PHP Method

appendLine() public method

public appendLine ( string $english = '' ) : void
$english string
return void
    public function appendLine($english = '')
    {
        $this->english .= $english . PHP_EOL;
    }

Usage Example

Ejemplo n.º 1
0
 public function visitJoin(Segments\Join $query)
 {
     $this->compilation->append('Join with: ');
     $this->compilation->appendJoinOptions($query->getOptions());
     $this->compilation->append(' and correlate the values according to: ');
     $this->compilation->appendFunction($query->getJoiningFunction());
     $this->compilation->appendLine();
 }