Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: extends ValuesOperation
コード例 #1
0
ファイル: OperationCompiler.php プロジェクト: timetoogo/pinq
 public function visitAddValues(Operations\AddValues $operation)
 {
     $this->compilation->append('Add the following values: ');
     $this->compilation->appendSource($operation->getSource());
 }
コード例 #2
0
ファイル: OperationEvaluator.php プロジェクト: timetoogo/pinq
 public function visitAddValues(Operations\AddValues $operation)
 {
     $this->collection->addRange(Traversable\ScopeEvaluator::evaluateSource($operation->getSource(), $this->parameters));
 }
コード例 #3
0
 public function visitAddValues(Operations\AddValues $operation)
 {
     return $operation->update($this->scopeProcessor->processSource($operation->getSource()));
 }