Ejemplo n.º 1
0
Archivo: Infix.php Proyecto: jivoo/data
 /**
  * {@inheritdoc}
  */
 public function toString(Quoter $quoter)
 {
     if (!$this->left instanceof Atomic) {
         return '(' . $this->left->toString($quoter) . ') ' . $this->operator . ' ' . $this->right->toString($quoter);
     }
     return $this->left->toString($quoter) . ' ' . $this->operator . ' ' . $this->right->toString($quoter);
 }