/** * Retrieves the string representation of this composite expression. * * @return string */ public function __toString() { if ($this->count() === 0) { return ''; } return parent::__toString(); }
/** * Gets the compiled expression as a string. This will look * something like `(alias.key = :placeholder)`. * * @return string */ public function getExpression() { return $this->expression->__toString(); }