Expression.php 229 B

1234567891011121314
  1. <?php
  2. namespace Doctrine\Common\Collections\Expr;
  3. /**
  4. * Expression for the {@link Selectable} interface.
  5. */
  6. interface Expression
  7. {
  8. /**
  9. * @return mixed
  10. */
  11. public function visit(ExpressionVisitor $visitor);
  12. }