diff --git a/docs/classes/Gac-Routing-Request.html b/docs/classes/Gac-Routing-Request.html
index 1e0c2ca..d34a4fd 100644
--- a/docs/classes/Gac-Routing-Request.html
+++ b/docs/classes/Gac-Routing-Request.html
@@ -225,6 +225,13 @@
Private method used for parsing request body data for PUT and PATCH requests
+
+ parse_raw_form_data()
+
+ : array<string|int, mixed>
+
+Parse raw form input data back into an array
+
@@ -328,7 +335,7 @@
@@ -380,7 +387,7 @@
@@ -420,7 +427,7 @@
status()
get_request_headers()
parse_patch_and_put_request_data()
+ parse_raw_form_data()
diff --git a/docs/js/searchIndex.js b/docs/js/searchIndex.js
index ff044af..bf252e9 100644
--- a/docs/js/searchIndex.js
+++ b/docs/js/searchIndex.js
@@ -70,6 +70,11 @@ Search.appendIndex(
"name": "parse_patch_and_put_request_data",
"summary": "Private\u0020method\u0020used\u0020for\u0020parsing\u0020request\u0020body\u0020data\u0020for\u0020PUT\u0020and\u0020PATCH\u0020requests",
"url": "classes/Gac-Routing-Request.html#method_parse_patch_and_put_request_data"
+ }, {
+ "fqsen": "\\Gac\\Routing\\Request\u003A\u003Aparse_raw_form_data\u0028\u0029",
+ "name": "parse_raw_form_data",
+ "summary": "Parse\u0020raw\u0020form\u0020input\u0020data\u0020back\u0020into\u0020an\u0020array",
+ "url": "classes/Gac-Routing-Request.html#method_parse_raw_form_data"
}, {
"fqsen": "\\Gac\\Routing\\Request\u003A\u003A\u0024data",
"name": "data",
diff --git a/docs/reports/deprecated.html b/docs/reports/deprecated.html
index d43071a..d47ad9a 100644
--- a/docs/reports/deprecated.html
+++ b/docs/reports/deprecated.html
@@ -114,21 +114,21 @@ Request.php
Reason |
- 107 |
+ 116 |
Request::status() |
Soon this option will be removed and should be replaced with a call to the Response class
New way of using the Response class: Response::withStatus(401, 'Not Authorized');
|
- 124 |
+ 134 |
Request::header() |
Soon this option will be removed and should be replaced with a call to the Response class
New way of using the Response class: Response::withHeader('header-key', 'header-value');
|
- 145 |
+ 156 |
Request::send() |
Soon this option will be removed and should be replaced with a call to the Response class
New way of using the Response class: Response::status(200, 'OK')::setBody($output);
|