|
@@ -64,9 +64,19 @@ class CounterController extends AbstractController
|
|
|
}
|
|
|
|
|
|
|
|
|
- public function getCounter(Counter $counter): JsonResponse
|
|
|
+ public function getCounter(?Counter $counter = null): JsonResponse
|
|
|
{
|
|
|
- return $this->json($counter, 200);
|
|
|
+ if (!$counter) {
|
|
|
+ $counter = [
|
|
|
+ 'error' => [
|
|
|
+ 'code' => 404,
|
|
|
+ 'message' => 'La ressource n\'existe pas'
|
|
|
+ ]
|
|
|
+ ];
|
|
|
+ $code = 404;
|
|
|
+ }
|
|
|
+
|
|
|
+ return $this->json($counter, $code ?? 200);
|
|
|
}
|
|
|
|
|
|
|