Skip to content

Instantly share code, notes, and snippets.

@wwwbruno
Last active August 29, 2015 14:07
Show Gist options
  • Save wwwbruno/477974520234717f8bb0 to your computer and use it in GitHub Desktop.
Save wwwbruno/477974520234717f8bb0 to your computer and use it in GitHub Desktop.
Symfony useful code
# Get doctrine entity manager
$em = $this->getDoctrine()->getManager();
# Get repository
$user = $em->getRepository('AcmeAdminBundle:User')->find($id);
# Get logged user
$this->getUser();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment