Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: extends FunctionBase
コード例 #1
0
ファイル: Aggregate.php プロジェクト: timetoogo/pinq
 public function getParameters()
 {
     return $this->aggregatorFunction->getParameterIds();
 }
コード例 #2
0
ファイル: AggregatorTest.php プロジェクト: timetoogo/pinq
 /**
  * @return callable
  */
 protected function functionFactory()
 {
     return Functions\Aggregator::factory();
 }
コード例 #3
0
ファイル: RequestParser.php プロジェクト: timetoogo/pinq
 public function interpretAggregate($requestId, IFunction $function)
 {
     $this->request = new Requests\Aggregate($this->buildFunction($function, Queries\Functions\Aggregator::factory()));
 }