Explorar o código

Correction barre de recherche

Sangfroid hai 7 meses
pai
achega
353691955e
Modificáronse 1 ficheiros con 1 adicións e 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;