Skip to content

Instantly share code, notes, and snippets.

@kix
Created January 30, 2013 11:34
Show Gist options
  • Save kix/4672684 to your computer and use it in GitHub Desktop.
Save kix/4672684 to your computer and use it in GitHub Desktop.
<?php
/**
* @Route("/users")
* @UseEntities({"users": "My\Bundle\Entity\User"})
*/
class UsersController extends Controller
{
/**
* @Route("/show", name="front_users_show")
* @Template()
* @CollectEntities("users", {paginated: true})
*/
public function showUsersAction(){}
// … etc
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment