Skip to content

Instantly share code, notes, and snippets.

@jwage
Created March 2, 2012 17:52
Show Gist options
  • Save jwage/1960005 to your computer and use it in GitHub Desktop.
Save jwage/1960005 to your computer and use it in GitHub Desktop.
<?php
$qb = $dm->createQueryBuilder();
$qb->addOr($qb->expr()->field('email')->equals($username));
$qb->addOr($qb->expr()->field('username')->equals($username));
$user = $qb->getQuery()->getSingleResult();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment