From b636d2e2dec0753e16273dd1a9505c3b32d2c123 Mon Sep 17 00:00:00 2001 From: Deco Date: Wed, 5 Oct 2022 23:40:33 -0300 Subject: [PATCH] Add missing space --- quick_tour/flex_recipes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_tour/flex_recipes.rst b/quick_tour/flex_recipes.rst index 9fed0c64e12..0c44c5dcb1b 100644 --- a/quick_tour/flex_recipes.rst +++ b/quick_tour/flex_recipes.rst @@ -165,7 +165,7 @@ Are you building an API? You can already return JSON from any controller:: // ... #[Route('/api/hello/{name}', methods: ['GET'])] - public function apiHello(string$name): JsonResponse + public function apiHello(string $name): JsonResponse { return $this->json([ 'name' => $name,