Skip to content

Instantly share code, notes, and snippets.

@jblac
Created February 19, 2013 17:15
Show Gist options
  • Save jblac/4987882 to your computer and use it in GitHub Desktop.
Save jblac/4987882 to your computer and use it in GitHub Desktop.
public function getCountAction() {
$user = $this->getUser();
$entities = $em->getRepository('EcsCrmBundle:Notifications')->findBy(array('sentTo'=>$user->getId(), 'dateAckknowledged' => 'NULL'));
$count = sizeof($entities);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment