1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/objects/paypal/paypalhttp/lib/PayPalHttp/Serializer/FormPart.php
2021-07-06 11:36:23 -03:00

25 lines
398 B
PHP

<?php
namespace PayPalHttp\Serializer;
class FormPart
{
private $value;
private $headers;
public function __construct($value, $headers)
{
$this->value = $value;
$this->headers = array_merge([], $headers);
}
public function getValue()
{
return $this->value;
}
public function getHeaders()
{
return $this->headers;
}
}