Exemplo n.º 1
0
 /**
  * {@inheritDoc}
  */
 public function toString(Quoter $quoter)
 {
     $values = $this->values;
     foreach ($values as $key => $v) {
         $values[$key] = $quoter->quoteLiteral($this->type, $v);
     }
     return '(' . implode(', ', $values) . ')';
 }
Exemplo n.º 2
0
 /**
  * {@inheritdoc}
  */
 public function toString(Quoter $quoter)
 {
     return $quoter->quoteLiteral($this->type, $this->value);
 }