Skip to content

Instantly share code, notes, and snippets.

@Spoygg
Created August 7, 2013 09:32
Show Gist options
  • Save Spoygg/6172598 to your computer and use it in GitHub Desktop.
Save Spoygg/6172598 to your computer and use it in GitHub Desktop.
/**
* @Get("/api/v1/profile/collections", name="api.profile.collections")
*/
public function profileCollectionsAction()
{
$userService = $this->container->get('user_service');
$view = $this->view(
$userService->getProfileCollections(),
200,
array()
);
return $this->handleView($view);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment