From 8a29c0c18e79aeb5d1b53aa7ff5eea42090878e9 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 25 Apr 2024 03:26:52 +0000 Subject: [PATCH] fix tests --- Controller/ApiController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/ApiController.php b/Controller/ApiController.php index 2529a49..242e075 100644 --- a/Controller/ApiController.php +++ b/Controller/ApiController.php @@ -78,7 +78,7 @@ final class ApiController extends Controller ); } catch (\Throwable $t) { $response->header->status = RequestStatusCode::R_400; - $this->app->logger?->error($t->getMessage()); + $this->app->logger->error($t->getMessage()); } $this->createStandardBackgroundResponse($request, $response, []);