From 17a56a9b605c131c1a063d4f259d51d5175e2a00 Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Sat, 4 May 2024 19:41:33 +0000 Subject: [PATCH] [AUTO] Update documentation --- docs/classes/Gac-Routing-Request.html | 74 ++++++++++++++++++++++++--- docs/js/searchIndex.js | 5 ++ docs/reports/deprecated.html | 6 +-- 3 files changed, 74 insertions(+), 11 deletions(-) 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 @@

@@ -498,7 +505,7 @@

@@ -552,7 +559,7 @@

@@ -622,7 +629,7 @@

@@ -700,7 +707,7 @@

@@ -740,7 +747,7 @@

Request.php : - 157 + 169 @@ -765,6 +772,56 @@

Return values
+ +
+

+ parse_raw_form_data() + + +

+ + +

Parse raw form input data back into an array

+ + + private + parse_raw_form_data(mixed $input) : array<string|int, mixed> + +
+
+ +
Parameters
+
+
+ $input + : mixed +
+
+ +
+
+ + + +
+
Return values
+ array<string|int, mixed> + — +

Returns parsed raw form data into an array

+
+ +
+
@@ -895,6 +952,7 @@
Return values
  • 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);