functions = $functions; } #[Route('/{year}', name: 'home', methods: ['GET'])] public function home(int $year): Response { $fridays = array(); try { foreach ($this->functions->countFriday13($year) as $date) { $fridays[] = $date->format("Y-m-d l"); } } catch (\Exception $e) { return new Response($e->getMessage()); } return $this->json($fridays); } }