From 42ac97b7602e116a5cdf85314358fd1fc7ce85c6 Mon Sep 17 00:00:00 2001 From: Mark Story Date: Wed, 1 Mar 2017 22:18:25 -0500 Subject: [PATCH] Doc block fixes for cookie class. --- src/Http/Cookie/Cookie.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Http/Cookie/Cookie.php b/src/Http/Cookie/Cookie.php index 3e28f2aba96..863d8cd4fa4 100644 --- a/src/Http/Cookie/Cookie.php +++ b/src/Http/Cookie/Cookie.php @@ -50,13 +50,15 @@ class Cookie implements CookieInterface protected $name = ''; /** - * Raw Cookie value + * Raw Cookie value. * * @var string|array */ protected $value = ''; /** + * Whether or not a JSON value has been expanded into an array. + * * @var bool */ protected $isExpanded = false; @@ -99,7 +101,7 @@ class Cookie implements CookieInterface /** * Constructor * - * The constructors args are similar to the native php setcookie() method. + * The constructors args are similar to the native PHP `setcookie()` method. * The only difference is the 3rd argument which excepts null or an object * implementing \DateTimeInterface instead an integer. *