Наследование: extends Pinq\Providers\DSL\Compilation\QueryCompilation, implements Pinq\Providers\DSL\Compilation\IRequestCompilation, implements Pinq\Providers\DSL\Compilation\IOperationCompilation
Пример #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();
 }
Пример #2
0
 public function visitIssetIndex(Requests\IssetIndex $request)
 {
     $this->compilation->append('Get whether the index is set');
 }
Пример #3
0
 public function visitSetIndex(Operations\SetIndex $operation)
 {
     $this->compilation->append('Set the index');
 }