From 92bbc93035809263366b1dd8abfa3b304c73d5b0 Mon Sep 17 00:00:00 2001 From: "John Paul E. Balandan, CPA" Date: Sun, 18 May 2025 01:28:15 +0800 Subject: [PATCH] docs: `CookieStore::get()` does not give an array of Cookie objects --- user_guide_src/source/libraries/cookies/013.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/user_guide_src/source/libraries/cookies/013.php b/user_guide_src/source/libraries/cookies/013.php index 80052c7c9218..d27b248662cd 100644 --- a/user_guide_src/source/libraries/cookies/013.php +++ b/user_guide_src/source/libraries/cookies/013.php @@ -1,9 +1,6 @@ get(); // array of Cookie objects - -// alternatively, you can use the display method -cookies()->display(); +cookies()->display(); // array of Cookie objects // or even from the Response service('response')->getCookies();