Skip to content

Commit

Permalink
Doc block fixes for cookie class.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Mar 2, 2017
1 parent 8065bc7 commit 42ac97b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Http/Cookie/Cookie.php
Expand Up @@ -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;
Expand Down Expand Up @@ -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.
*
Expand Down

0 comments on commit 42ac97b

Please sign in to comment.