فهرست منبع

Correction barre de recherche

Sangfroid 7 ماه پیش
والد
کامیت
353691955e
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/Service/Search.php

+ 1 - 1
src/Service/Search.php

@@ -42,7 +42,7 @@ class Search
     protected function searchByFilm(string $query): array
     {
         $q = $this->em
-            ->createQuery('SELECT f from App:Film f WHERE f.titre like :titre')
+            ->createQuery('SELECT f from App\Entity\Film f WHERE f.titre like :titre')
             ->setParameter('titre', '%'.$query.'%')
             ->getResult();
         return $q;