File manager - Edit - /home/infoilmg/public_html/wp-content/plugins/fs-poster/vendor/abraham/twitteroauth/src/Response.php
Back
<?php namespace Abraham\TwitterOAuth; /** * The result of the most recent API request. * * @author Abraham Williams <abraham@abrah.am> */ class Response { /** @var string|null API path from the most recent request */ private $apiPath; /** @var int HTTP status code from the most recent request */ private $httpCode = 0; /** @var array HTTP headers from the most recent request */ private $headers = []; /** @var array|object Response body from the most recent request */ private $body = []; /** @var array HTTP headers from the most recent request that start with X */ private $xHeaders = []; /** * @param string $apiPath */ public function setApiPath($apiPath) { $this->apiPath = $apiPath; } /** * @return string|null */ public function getApiPath() { return $this->apiPath; } /** * @param array|object $body */ public function setBody($body) { $this->body = $body; } /** * @return array|object|string */ public function getBody() { return $this->body; } /** * @param int $httpCode */ public function setHttpCode($httpCode) { $this->httpCode = $httpCode; } /** * @return int */ public function getHttpCode() { return $this->httpCode; } /** * @param array $headers */ public function setHeaders(array $headers) { foreach ($headers as $key => $value) { if (substr($key, 0, 1) == 'x') { $this->xHeaders[$key] = $value; } } $this->headers = $headers; } /** * @return array */ public function getsHeaders() { return $this->headers; } /** * @param array $xHeaders */ public function setXHeaders(array $xHeaders = []) { $this->xHeaders = $xHeaders; } /** * @return array */ public function getXHeaders() { return $this->xHeaders; } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0.05 |
proxy
|
phpinfo
|
Settings