Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nickvergessen/1655701b45a4fbb5499545f70d83f435 to your computer and use it in GitHub Desktop.

Select an option

Save nickvergessen/1655701b45a4fbb5499545f70d83f435 to your computer and use it in GitHub Desktop.
$qb->select('id', 'uid', 'password', 'name', 'type', 'token', 'last_activity')
->from('authtoken')
->where($qb->expr()->eq('uid', $qb->createNamedParameter($user->getUID())))
->setMaxResults(1000)
$result = $qb->execute();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment