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 d6e70a2 commit d4f3499Copy full SHA for d4f3499
src/Http/Request.php
@@ -73,6 +73,10 @@ class Request
73
* @var array
74
*/
75
protected $parameters = [];
76
+ /**
77
+ * @var RequestInterface
78
+ */
79
+ protected RequestInterface $psrRequest;
80
81
public function __construct(AbstractClient $client = null)
82
{
@@ -297,7 +301,14 @@ public function make($method, $uri)
297
301
298
302
$uriObject = $this->getClient()->getUri($fullPath);
299
303
300
- return $this->getClient()->getRequest($method, $uriObject);
304
+ $this->psrRequest = $this->getClient()->getRequest($method, $uriObject);
305
+
306
+ return $this->psrRequest;
307
+ }
308
309
+ public function getPsrRequest()
310
+ {
311
312
}
313
314
/**
0 commit comments