소스 검색

Si commentaire mais pas de note, note non comptée

François 6 년 전
부모
커밋
62a768909f
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/AppBundle/Service/NoteMoyenne.php

+ 2 - 1
src/AppBundle/Service/NoteMoyenne.php

@@ -27,7 +27,8 @@ class NoteMoyenne {
         $nb = 0;
 
         foreach ($commentaires as $commentaire) {
-            $nb ++;
+            if ($commentaire->getNote() > 0 && $commentaire->getNote() != null)
+                $nb++;
             $total += $commentaire->getNote();
         }