Expression.php 217 B

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