ok
Direktori : /home2/selectio/www/limpiar.in.net/vendor/paypal/paypalhttp/lib/PayPalHttp/Serializer/ |
Current File : /home2/selectio/www/limpiar.in.net/vendor/paypal/paypalhttp/lib/PayPalHttp/Serializer/FormPart.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; } }