From 311afbeda547705f6f73e43fad158d11bb727eae Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Tue, 10 Dec 2024 18:56:35 +0700 Subject: [PATCH] refactor: cs fix --- system/Filters/PageCache.php | 1 + 1 file changed, 1 insertion(+) diff --git a/system/Filters/PageCache.php b/system/Filters/PageCache.php index 76a3faaaf7e1..b0013c81ce37 100644 --- a/system/Filters/PageCache.php +++ b/system/Filters/PageCache.php @@ -72,6 +72,7 @@ public function after(RequestInterface $request, ResponseInterface $response, $a // so that we can have live speed updates along the way. // Must be run after filters to preserve the Response headers. $this->pageCache->make($request, $response); + return $response; }