getSegments() публичный Метод

public getSegments ( ) : Pinq\Queries\ISegment[]
Результат Pinq\Queries\ISegment[]
Пример #1
0
 /**
  * @return mixed
  */
 public function compile()
 {
     foreach ($this->scope->getSegments() as $segment) {
         $segment->traverse($this);
     }
 }
Пример #2
0
 public function buildScope()
 {
     return new Queries\Scope($this->processSourceInfo($this->scope->getSourceInfo()), $this->processSegments($this->scope->getSegments()));
 }