PATH:
home
/
lab2454c
/
.trash
/
core
/
app
/
Http
/
Controllers
/
Gateway
/
PaypalSdk
/
PayPalHttp
/
Serializer
<?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; } }
[+]
..
[-] Form.php
[edit]
[-] FormPart.php
[edit]
[-] Text.php
[edit]
[-] Json.php
[edit]
[-] Multipart.php
[edit]