View file ProForum/Files/application/app/Http/Controllers/Gateway/PaypalSdk/PayPalHttp/Serializer/FormPart.php
<?php
namespace App\Http\Controllers\Gateway\PaypalSdk\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;
}
}