Pinq\Queries\IScope::getSegments PHP Method

getSegments() public method

public getSegments ( ) : Pinq\Queries\ISegment[]
return Pinq\Queries\ISegment[]
    public function getSegments();

Usage Example

コード例 #1
0
ファイル: ScopeCompiler.php プロジェクト: timetoogo/pinq
 /**
  * @return mixed
  */
 public function compile()
 {
     foreach ($this->scope->getSegments() as $segment) {
         $segment->traverse($this);
     }
 }
All Usage Examples Of Pinq\Queries\IScope::getSegments