Compare commits

..

2 Commits

Author SHA1 Message Date
7c61e9e9f2 Merge remote-tracking branch 'refs/remotes/origin/main'
- Suppression dump
2025-01-29 10:46:04 +01:00
7f975e64ce - Suppression d'un dump 2025-01-29 10:44:10 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -26,10 +26,10 @@ class APISearchController extends AbstractController
public function index(): Response public function index(): Response
{ {
$datas = $this->search(); $datas = $this->search();
return $this->render('apiSearch/index.html.twig', [ return $this->render('apiSearch/index.html.twig', [
'controller_name' => 'APISearchController', 'controller_name' => 'APISearchController',
'datas' => $datas, 'datas' => $datas,
]); ]);
} }
} }

View File

@ -26,7 +26,7 @@ class GoogleBooksService
// Convertir la réponse JSON en tableau PHP // Convertir la réponse JSON en tableau PHP
$dataArray = $response->toArray(); $dataArray = $response->toArray();
return $dataArray; return $dataArray;
} }
} }