PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
paypal
/
paypalhttp
/
lib
/
PayPalHttp
/
Serializer
/
Editing: 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; } }
SAVE
CANCEL