__construct() public method

public __construct ( $idPrefix, Pinq\Expressions\IEvaluationContext $evaluationContext = null )
$evaluationContext Pinq\Expressions\IEvaluationContext
コード例 #1
0
 public function __construct($segmentId, IJoinOptionsInterpretation $interpretation, ISourceInterpreter $sourceInterpreter, O\IEvaluationContext $evaluationContext = null)
 {
     parent::__construct($segmentId, $evaluationContext);
     $this->interpretation = $interpretation;
     $this->sourceInterpreter = $sourceInterpreter;
 }
コード例 #2
0
ファイル: ScopeInterpreter.php プロジェクト: timetoogo/pinq
 public function __construct(IScopeInterpretation $interpretation, O\IEvaluationContext $evaluationContext = null, $idPrefix = 'scope')
 {
     parent::__construct($idPrefix, $evaluationContext);
     $this->interpretation = $interpretation;
 }
コード例 #3
0
ファイル: QueryInterpreter.php プロジェクト: timetoogo/pinq
 public function __construct($idPrefix, IScopeInterpreter $scopeInterpreter, O\IEvaluationContext $evaluationContext = null)
 {
     parent::__construct($idPrefix, $evaluationContext);
     $this->scopeInterpreter = $scopeInterpreter;
 }