Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: extends ValuesOperation
Example #1
0
 public function visitRemoveValues(Operations\RemoveValues $operation)
 {
     $this->compilation->append('Remove the following values: ');
     $this->compilation->appendSource($operation->getSource());
 }
Example #2
0
 public function visitRemoveValues(Operations\RemoveValues $operation)
 {
     $this->collection->removeRange(Traversable\ScopeEvaluator::evaluateSource($operation->getSource(), $this->parameters));
 }
 public function visitRemoveValues(Operations\RemoveValues $operation)
 {
     return $operation->update($this->scopeProcessor->processSource($operation->getSource()));
 }