浏览代码

Service repo

François Drouhard 5 年之前
父节点
当前提交
8d457d9a3e
共有 1 个文件被更改,包括 5 次插入6 次删除
  1. 5 6
      src/Service/Nouveautes.php

+ 5 - 6
src/Service/Nouveautes.php

@@ -2,24 +2,23 @@
 
 
 namespace App\Service;
 namespace App\Service;
 
 
-use App\Entity\Commentaire;
-use Doctrine\ORM\EntityManagerInterface;
+use App\Repository\CommentaireRepository;
 use Twig\Environment;
 use Twig\Environment;
 use Twig\Extension\RuntimeExtensionInterface;
 use Twig\Extension\RuntimeExtensionInterface;
 
 
 class Nouveautes implements RuntimeExtensionInterface
 class Nouveautes implements RuntimeExtensionInterface
 {
 {
     private $twig;
     private $twig;
-    private $em;
+    private $repoCommentaire;
 
 
-    public function __construct(EntityManagerInterface $em, Environment $twig)
+    public function __construct(CommentaireRepository $repoCommentaire, Environment $twig)
     {
     {
-        $this->em = $em;
+        $this->repoCommentaire = $repoCommentaire;
         $this->twig = $twig;
         $this->twig = $twig;
     }
     }
 
 
     public function afficher () {
     public function afficher () {
-        $commentaires = $this->em->getRepository(Commentaire::class)->findLast(5);
+        $commentaires = $this->repoCommentaire->findLast(5);
 
 
         return $this->twig->render('nouveautes/nouveautes.html.twig', [
         return $this->twig->render('nouveautes/nouveautes.html.twig', [
             'commentaires'  =>  $commentaires
             'commentaires'  =>  $commentaires