append() public method

public append ( string $english ) : void
$english string
return void
Example #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();
 }
Example #2
0
 public function visitIssetIndex(Requests\IssetIndex $request)
 {
     $this->compilation->append('Get whether the index is set');
 }
Example #3
0
 public function visitSetIndex(Operations\SetIndex $operation)
 {
     $this->compilation->append('Set the index');
 }