Pinq\Providers\DSL\Compilation\Compilers\RequestQueryCompiler::__construct PHP Method

__construct() public method

public __construct ( Pinq\Queries\IRequestQuery $query, Pinq\Providers\DSL\Compilation\IRequestCompilation $compilation, Pinq\Providers\DSL\Compilation\Compilers\IScopeCompiler $scopeCompiler )
$query Pinq\Queries\IRequestQuery
$compilation Pinq\Providers\DSL\Compilation\IRequestCompilation
$scopeCompiler Pinq\Providers\DSL\Compilation\Compilers\IScopeCompiler
    public function __construct(IRequestQuery $query, IRequestCompilation $compilation, IScopeCompiler $scopeCompiler)
    {
        parent::__construct($query, $compilation, $scopeCompiler);
    }

Usage Example

 public function __construct(Queries\IRequestQuery $requestQuery, Select $select)
 {
     parent::__construct($requestQuery, $select, new ScopeCompiler($requestQuery->getScope(), $select));
 }
All Usage Examples Of Pinq\Providers\DSL\Compilation\Compilers\RequestQueryCompiler::__construct
RequestQueryCompiler