X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=http%2FEnv%2FRequest.md;h=6aef6c795289132d556dd86166b9e4af6f6c1996;hb=280e2cd3c237e14c6b8659cd4e7c604dbe5e9ec6;hp=57dc7878da35386595dd6bf81baf62861d3aef17;hpb=d5af35badf0c029ba85f9b53b78bcd5a01907a8d;p=mdref%2Fmdref-http diff --git a/http/Env/Request.md b/http/Env/Request.md index 57dc787..6aef6c7 100644 --- a/http/Env/Request.md +++ b/http/Env/Request.md @@ -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)