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
:
HttpResponse.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace 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; } }