diff options
Diffstat (limited to 'vendor/paypal/paypalhttp/lib/PayPalHttp/HttpRequest.php')
-rw-r--r-- | vendor/paypal/paypalhttp/lib/PayPalHttp/HttpRequest.php | 84 |
1 files changed, 42 insertions, 42 deletions
diff --git a/vendor/paypal/paypalhttp/lib/PayPalHttp/HttpRequest.php b/vendor/paypal/paypalhttp/lib/PayPalHttp/HttpRequest.php index 89b7480..656994a 100644 --- a/vendor/paypal/paypalhttp/lib/PayPalHttp/HttpRequest.php +++ b/vendor/paypal/paypalhttp/lib/PayPalHttp/HttpRequest.php @@ -1,42 +1,42 @@ -<?php - -namespace PayPalHttp; - -/** - * Class HttpRequest - * @package PayPalHttp - * - * Request object that holds all the necessary information required by HTTPClient - * - * @see HttpClient - */ -class HttpRequest -{ - /** - * @var string - */ - public $path; - - /** - * @var array | string - */ - public $body; - - /** - * @var string - */ - public $verb; - - /** - * @var array - */ - public $headers; - - function __construct($path, $verb) - { - $this->path = $path; - $this->verb = $verb; - $this->body = NULL; - $this->headers = []; - } -} +<?php
+
+namespace PayPalHttp;
+
+/**
+ * Class HttpRequest
+ * @package PayPalHttp
+ *
+ * Request object that holds all the necessary information required by HTTPClient
+ *
+ * @see HttpClient
+ */
+class HttpRequest
+{
+ /**
+ * @var string
+ */
+ public $path;
+
+ /**
+ * @var array | string
+ */
+ public $body;
+
+ /**
+ * @var string
+ */
+ public $verb;
+
+ /**
+ * @var array
+ */
+ public $headers;
+
+ function __construct($path, $verb)
+ {
+ $this->path = $path;
+ $this->verb = $verb;
+ $this->body = NULL;
+ $this->headers = [];
+ }
+}
|