Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
core
/
lib
/
paypal
/
paypal
/
paypalhttp
/
lib
/
PayPalHttp
/
Serializer
:
FormPart.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }