Skip to content

Instantly share code, notes, and snippets.

@glynrob
Created November 16, 2013 14:31
Show Gist options
  • Save glynrob/7500755 to your computer and use it in GitHub Desktop.
Save glynrob/7500755 to your computer and use it in GitHub Desktop.
/**
* @Route("/users")
* @Template()
*/
public function indexAction()
{
$repository = $this->getDoctrine()
->getRepository('UsersListBundle:Users');
$users = $repository->findAll();
return array('users' => $users);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment