diff --git a/docs/classes/Gac-Routing-Request.html b/docs/classes/Gac-Routing-Request.html index 8022676..1e0c2ca 100644 --- a/docs/classes/Gac-Routing-Request.html +++ b/docs/classes/Gac-Routing-Request.html @@ -176,6 +176,13 @@

Returns a value for a specified body argument
+
+ getAllData() + +  : mixed +
+
Returns all body request arguments
+
header() @@ -358,6 +365,46 @@
Return values
+ +
+

+ getAllData() + + +

+ + +

Returns all body request arguments

+ + + public + getAllData() : mixed + +
+
+ + + + +
+
Return values
+ mixed + — +

All body arguments

+
+ +
+
@@ -451,7 +498,7 @@

@@ -505,7 +552,7 @@

@@ -575,7 +622,7 @@

@@ -653,7 +700,7 @@

@@ -693,7 +740,7 @@

Request.php : - 148 + 157 @@ -841,6 +888,7 @@

Return values
  • __construct()
  • get()
  • +
  • getAllData()
  • header()
  • headers()
  • send()
  • diff --git a/docs/js/searchIndex.js b/docs/js/searchIndex.js index c5587ad..ff044af 100644 --- a/docs/js/searchIndex.js +++ b/docs/js/searchIndex.js @@ -35,6 +35,11 @@ Search.appendIndex( "name": "get", "summary": "Returns\u0020a\u0020value\u0020for\u0020a\u0020specified\u0020body\u0020argument", "url": "classes/Gac-Routing-Request.html#method_get" + }, { + "fqsen": "\\Gac\\Routing\\Request\u003A\u003AgetAllData\u0028\u0029", + "name": "getAllData", + "summary": "Returns\u0020all\u0020body\u0020request\u0020arguments", + "url": "classes/Gac-Routing-Request.html#method_getAllData" }, { "fqsen": "\\Gac\\Routing\\Request\u003A\u003Aheaders\u0028\u0029", "name": "headers", diff --git a/docs/reports/deprecated.html b/docs/reports/deprecated.html index 8d574af..d43071a 100644 --- a/docs/reports/deprecated.html +++ b/docs/reports/deprecated.html @@ -114,21 +114,21 @@

    Request.php

    Reason - 98 + 107 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');

    - 115 + 124 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');

    - 136 + 145 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);