drop v2
[mdref/mdref-http] / http / Env / Request.md
index 57dc7878da35386595dd6bf81baf62861d3aef17..6aef6c795289132d556dd86166b9e4af6f6c1996 100644 (file)
@@ -4,15 +4,23 @@ The http\Env\Request class' instances represent the server's current HTTP reques
 
 See http\Message for inherited members.
 
+## Changelog:
+
+Version | Changes
+--------|--------
+2.2.0   | Added http\Env\Request::getCookie() and http\Env\Request::$cookie.
+
 ## Constants:
 
 None.
 
 ## Properties:
 
-* protected $query = NULL  
+* protected http\QueryString $query = NULL  
   The request's query parameters. ($_GET)
-* protected $form = NULL  
+* protected http\QueryString $form = NULL  
   The request's form parameters. ($_POST)
-* protected $files = NULL  
+* protected array $files = NULL  
   The request's form uploads. ($_FILES)
+* protected array $cookie = NULL  
+  The request's cookies. ($_COOKIE)