drop v2
[mdref/mdref-http] / http / Env / Request.md
index 5c4b32f271f71329220ed20313f73932ad018b1f..6aef6c795289132d556dd86166b9e4af6f6c1996 100644 (file)
@@ -1,14 +1,26 @@
 # class http\Env\Request extends http\Message
 
+The http\Env\Request class' instances represent the server's current HTTP request.
+
+See http\Message for inherited members.
+
+## Changelog:
+
+Version | Changes
+--------|--------
+2.2.0   | Added http\Env\Request::getCookie() and http\Env\Request::$cookie.
+
 ## Constants:
 
-None.
+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)