update() public method

Returns the query with the supplied scope and request.
public update ( Pinq\Queries\IScope $scope, Pinq\Queries\IRequest $request ) : Pinq\Queries\IRequestQuery
$scope Pinq\Queries\IScope
$request Pinq\Queries\IRequest
return Pinq\Queries\IRequestQuery
コード例 #1
0
 public function buildQuery()
 {
     $scope = $this->scopeProcessor->buildScope();
     $request = $this->requestQuery->getRequest();
     return $this->requestQuery->update($this->processScope($scope, $request), $this->processRequest($scope, $request));
 }