File "FormPart.php"

Full Path: /home/cananyalcin/public_html/core/lib/paypal/paypal/paypalhttp/lib/PayPalHttp/Serializer/FormPart.php
File size: 398 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
    }
}