PATH:
home
/
lab2454c
/
.trash
/
core
/
app
/
Http
/
Controllers
/
Gateway
/
PaypalSdk
/
PayPalHttp
<?php namespace App\Http\Controllers\Gateway\PaypalSdk\PayPalHttp; /** * Class HttpResponse * @package PayPalHttp * * Object that holds your response details */ class HttpResponse { /** * @var integer */ public $statusCode; /** * @var array | string */ public $result; /** * @var array */ public $headers; public function __construct($statusCode, $body, $headers) { $this->statusCode = $statusCode; $this->headers = $headers; $this->result = $body; } }
[+]
..
[-] Encoder.php
[edit]
[-] HttpException.php
[edit]
[+]
Serializer
[-] Injector.php
[edit]
[-] HttpResponse.php
[edit]
[-] Curl.php
[edit]
[-] HttpRequest.php
[edit]
[-] Environment.php
[edit]
[-] HttpClient.php
[edit]
[-] Serializer.php
[edit]
[-] IOException.php
[edit]