Pārlūkot izejas kodu

Correction barre de recherche

Sangfroid 7 mēneši atpakaļ
vecāks
revīzija
353691955e
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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;