/**
  *
  * @return string
  */
 public function __toString()
 {
     return '(' . $this->condition1->__toString() . ') ' . static::$glue . ' (' . $this->condition2->__toString() . ')';
 }
Beispiel #2
0
 /**
  * @return string
  */
 public function __toString()
 {
     return 'NOT(' . $this->condition->__toString() . ')';
 }