Serializer
5 years ago
Curl.php
5 years ago
Encoder.php
4 years ago
Environment.php
5 years ago
HttpClient.php
4 years ago
HttpException.php
4 years ago
HttpRequest.php
5 years ago
HttpResponse.php
4 years ago
IOException.php
5 years ago
Injector.php
4 years ago
Serializer.php
5 years ago
HttpRequest.php
43 lines
| 1 | <?php |
| 2 | |
| 3 | namespace PayPalHttp; |
| 4 | |
| 5 | /** |
| 6 | * Class HttpRequest |
| 7 | * @package PayPalHttp |
| 8 | * |
| 9 | * Request object that holds all the necessary information required by HTTPClient |
| 10 | * |
| 11 | * @see HttpClient |
| 12 | */ |
| 13 | class HttpRequest |
| 14 | { |
| 15 | /** |
| 16 | * @var string |
| 17 | */ |
| 18 | public $path; |
| 19 | |
| 20 | /** |
| 21 | * @var array | string |
| 22 | */ |
| 23 | public $body; |
| 24 | |
| 25 | /** |
| 26 | * @var string |
| 27 | */ |
| 28 | public $verb; |
| 29 | |
| 30 | /** |
| 31 | * @var array |
| 32 | */ |
| 33 | public $headers; |
| 34 | |
| 35 | function __construct($path, $verb) |
| 36 | { |
| 37 | $this->path = $path; |
| 38 | $this->verb = $verb; |
| 39 | $this->body = NULL; |
| 40 | $this->headers = []; |
| 41 | } |
| 42 | } |
| 43 |