From 879c30f414c05df7ed5d16b8e6cd041800591d29 Mon Sep 17 00:00:00 2001 From: "John Paul E. Balandan, CPA" Date: Sun, 4 Sep 2022 19:44:31 +0800 Subject: [PATCH] Fix overlooked coding style violations --- tests/system/CodeIgniterTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/system/CodeIgniterTest.php b/tests/system/CodeIgniterTest.php index f3f8bf7442f8..4535096ccc61 100644 --- a/tests/system/CodeIgniterTest.php +++ b/tests/system/CodeIgniterTest.php @@ -626,6 +626,7 @@ public function testPageCacheSendSecureHeaders() /** * @param array|bool $cacheQueryStringValue + * * @dataProvider cacheQueryStringProvider * * @see https://github.com/codeigniter4/CodeIgniter4/pull/6410 @@ -655,7 +656,7 @@ public function testPageCacheWithCacheQueryString($cacheQueryStringValue, int $e $routes->add($testingUrl, static function () { CodeIgniter::cache(0); // Dont cache the page in the run() function because CodeIgniter class will create default $cacheConfig and overwrite settings from the dataProvider $response = Services::response(); - $string = 'This is a test page, to check cache configuration'; + $string = 'This is a test page, to check cache configuration'; return $response->setBody($string); });