����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace BackupGuard;
class Response
{
private $httpStatus = false;
private $contentType = false;
private $body = false;
public function getHttpStatus()
{
return $this->httpStatus;
}
public function setHttpStatus($httpStatus)
{
$this->httpStatus = $httpStatus;
}
public function getContentType()
{
return $this->contentType;
}
public function setContentType($contentType)
{
$this->contentType = $contentType;
}
public function getBody()
{
return $this->body;
}
public function setBody($body)
{
$this->body = $body;
}
public function parseJsonBody()
{
if ($this->body) {
$this->body = json_decode($this->body, true);
}
}
public function getBodyParam($key)
{
if (is_array($this->body) && isset($this->body[$key])) {
return $this->body[$key];
}
return null;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Exception | Folder | 0755 |
|
|
| Client.php | File | 14.54 KB | 0644 |
|
| Config.php | File | 131 B | 0644 |
|
| Curl.php | File | 2.06 KB | 0644 |
|
| Helper.php | File | 3.27 KB | 0644 |
|
| RequestHandler.php | File | 1.31 KB | 0644 |
|
| Response.php | File | 832 B | 0644 |
|
| Stream.php | File | 2.28 KB | 0644 |
|