Form.php
5 years ago
FormPart.php
5 years ago
Json.php
5 years ago
Multipart.php
5 years ago
Text.php
5 years ago
FormPart.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace PayPalHttp\Serializer; |
| 4 | |
| 5 | class FormPart |
| 6 | { |
| 7 | private $value; |
| 8 | private $headers; |
| 9 | |
| 10 | public function __construct($value, $headers) |
| 11 | { |
| 12 | $this->value = $value; |
| 13 | $this->headers = array_merge([], $headers); |
| 14 | } |
| 15 | |
| 16 | public function getValue() |
| 17 | { |
| 18 | return $this->value; |
| 19 | } |
| 20 | |
| 21 | public function getHeaders() |
| 22 | { |
| 23 | return $this->headers; |
| 24 | } |
| 25 | } |
| 26 |