Inheritance: extends Pinq\Providers\DSL\Compilation\QueryCompilation, implements Pinq\Providers\DSL\Compilation\IRequestCompilation, implements Pinq\Providers\DSL\Compilation\IOperationCompilation
コード例 #1
0
ファイル: ScopeCompiler.php プロジェクト: timetoogo/pinq
 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
ファイル: RequestCompiler.php プロジェクト: timetoogo/pinq
 public function visitIssetIndex(Requests\IssetIndex $request)
 {
     $this->compilation->append('Get whether the index is set');
 }
コード例 #3
0
ファイル: OperationCompiler.php プロジェクト: timetoogo/pinq
 public function visitSetIndex(Operations\SetIndex $operation)
 {
     $this->compilation->append('Set the index');
 }