PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
paypal
/
paypalhttp
/
lib
/
PayPalHttp
/
Serializer
<?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; } }
[+]
..
[-] Form.php
[edit]
[-] FormPart.php
[edit]
[-] Text.php
[edit]
[-] Json.php
[edit]
[-] Multipart.php
[edit]