From 778a8f02eb744854ddf28bad411a454611c0400c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 26 Jan 2023 21:39:23 +0100 Subject: [PATCH] change docblock --- DataStorage/Cookie/CookieJar.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/DataStorage/Cookie/CookieJar.php b/DataStorage/Cookie/CookieJar.php index 174782c17..c1697e6ae 100755 --- a/DataStorage/Cookie/CookieJar.php +++ b/DataStorage/Cookie/CookieJar.php @@ -94,7 +94,16 @@ final class CookieJar * * @since 1.0.0 */ - public function set(string $id, mixed $value, int $expire = 86400, string $path = '/', string $domain = null, bool $secure = false, bool $httpOnly = true, bool $overwrite = true) : bool + public function set( + string $id, + mixed $value, + int $expire = 86400, + string $path = '/', + string $domain = null, + bool $secure = false, + bool $httpOnly = true, + bool $overwrite = true + ) : bool { if ($overwrite || !isset($this->cookies[$id])) { $this->cookies[$id] = [