예제 #1
0
 public function getParameters()
 {
     return $this->predicateFunction->getParameterIds();
 }
예제 #2
0
파일: Ordering.php 프로젝트: timetoogo/pinq
 /**
  * @return string[]
  */
 public function getParameters()
 {
     return array_merge([$this->isAscendingId], $this->projectionFunction->getParameterIds());
 }
예제 #3
0
 public function getParameters()
 {
     return $this->projectionFunction === null ? [] : $this->projectionFunction->getParameterIds();
 }
예제 #4
0
파일: Equality.php 프로젝트: timetoogo/pinq
 public function getParameters()
 {
     return array_merge($this->outerKeyFunction->getParameterIds(), $this->innerKeyFunction->getParameterIds());
 }