Pinq\Queries\Requests\ProjectionRequestBase::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( ElementProjection $projectionFunction = null )
$projectionFunction Pinq\Queries\Functions\ElementProjection
    public function __construct(Functions\ElementProjection $projectionFunction = null)
    {
        $this->projectionFunction = $projectionFunction;
    }

Usage Example

예제 #1
0
파일: Implode.php 프로젝트: timetoogo/pinq
 public function __construct($delimiterId, Functions\ElementProjection $projectionFunction = null)
 {
     parent::__construct($projectionFunction);
     $this->delimiterId = $delimiterId;
 }
All Usage Examples Of Pinq\Queries\Requests\ProjectionRequestBase::__construct