FIX: removing \ of PDOException in line 61.

This commit is contained in:
lukibeg 2025-10-24 23:19:29 -03:00
parent 90fbf343b0
commit 6d901f9bac
1 changed files with 1 additions and 1 deletions

View File

@ -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'],