em = $em; } public function calculerMoyenne (Film $film) { $commentaires = $this->em ->getRepository('AppBundle:Commentaire') ->findBy(array('film' => $film)); $notes[] = array(); $total = 0; $nb = 0; foreach ($commentaires as $commentaire) { if ($commentaire->getNote() > 0 && $commentaire->getNote() != null) $nb++; $total += $commentaire->getNote(); } $note = 0; if ($nb > 0) { $note = $total / $nb; } if ($note == 0) $note = null; $film->setNote($note); $film->setNbComs(count($commentaires)); $this->em->flush(); } }