Explorar el Código

Correction barre de recherche

Sangfroid hace 7 meses
padre
commit
353691955e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;