From 6d901f9bacb7143578e56f25d0bcaf4c5afbcc19 Mon Sep 17 00:00:00 2001 From: lukibeg Date: Fri, 24 Oct 2025 23:19:29 -0300 Subject: [PATCH] FIX: removing \ of PDOException in line 61. --- app/api/ReportController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/ReportController.php b/app/api/ReportController.php index 0c7a3d4..dd956d0 100644 --- a/app/api/ReportController.php +++ b/app/api/ReportController.php @@ -58,7 +58,7 @@ class ReportController ['Content-Type' => 'application/json'], json_encode(['success' => true, 'data' => $result], JSON_UNESCAPED_UNICODE) ); - } catch (\PDOException $e) { + } catch (PDOException $e) { return new Response( 500, ['Content-Type' => 'application/json'],