appendLine() public method

public appendLine ( string $english = '' ) : void
$english string
return void
Esempio 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();
 }