mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
25 lines
398 B
PHP
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;
|
|
}
|
|
}
|