Ejemplo n.º 1
0
 public function visitConstantValue(ConstantValueBinding $constantValue)
 {
     $this->writer->literal($constantValue->getValue());
 }
Ejemplo n.º 2
0
 public function fold(ConstantValueBinding $first, ConstantValueBinding $second)
 {
     return new ConstantValueBinding($first->getKey(), $first->getValue() . $second->getValue());
 }