From 0f3e8ef71ad45757128061b0d7e135774f64760c Mon Sep 17 00:00:00 2001 From: neznaika0 Date: Sun, 26 Oct 2025 20:34:02 +0300 Subject: [PATCH] fix: Typo in RedirectException --- system/HTTP/Exceptions/RedirectException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/HTTP/Exceptions/RedirectException.php b/system/HTTP/Exceptions/RedirectException.php index abb9be1e9e35..a16dfc1a8a2d 100644 --- a/system/HTTP/Exceptions/RedirectException.php +++ b/system/HTTP/Exceptions/RedirectException.php @@ -80,7 +80,7 @@ public function getResponse(): ResponseInterface $location = $this->response->getHeaderLine('Location'); - service(('logger'))->info(sprintf( + service('logger')->info(sprintf( 'REDIRECTED ROUTE at %s', $location !== '' ? $location : substr($this->response->getHeaderLine('Refresh'), 6), ));