コード例 #1
0
 public function visitConstantValue(ConstantValueBinding $constantValue)
 {
     $this->writer->literal($constantValue->getValue());
 }
コード例 #2
0
 public function fold(ConstantValueBinding $first, ConstantValueBinding $second)
 {
     return new ConstantValueBinding($first->getKey(), $first->getValue() . $second->getValue());
 }