We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1012cdb commit 3e5bd46Copy full SHA for 3e5bd46
src/Requests/Payload.php
@@ -8,17 +8,20 @@
8
class Payload
9
{
10
/**
11
- * The request.
+ * A request object. Currently both \GuzzleHttp\Psr7\Request and
12
+ * \Illuminate\Http\Request are supported.
13
*
- * @var \GuzzleHttp\Psr7\Request
14
+ * @var mixed
15
*/
16
private $request;
17
18
19
* Set's the local request to extract a payload from.
20
- * @param \GuzzleHttp\Psr7\Request $request
21
- * The request to extract a payload from.
+ * @param mixed $request
22
+ * The request to extract a payload from. Currently both
23
+ * \GuzzleHttp\Psr7\Request and \Illuminate\Http\Request are
24
+ * supported.
25
26
public function __construct($request)
27
0 commit comments