-
WIBUHAX0R1337
-
/
home
/
coludnqa
/
rohihbs.com
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzlehttp
/
psr7
/
src
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
AppendStream.php
5.633KB
Edit File
Delete File
Rename
BufferStream.php
3.007KB
Edit File
Delete File
Rename
CachingStream.php
4.346KB
Edit File
Delete File
Rename
DroppingStream.php
1.068KB
Edit File
Delete File
Rename
FnStream.php
3.865KB
Edit File
Delete File
Rename
Header.php
2.127KB
Edit File
Delete File
Rename
InflateStream.php
1.802KB
Edit File
Delete File
Rename
LazyOpenStream.php
0.879KB
Edit File
Delete File
Rename
LimitStream.php
4.126KB
Edit File
Delete File
Rename
Message.php
8.082KB
Edit File
Delete File
Rename
MessageTrait.php
7.672KB
Edit File
Delete File
Rename
MimeType.php
4.989KB
Edit File
Delete File
Rename
MultipartStream.php
4.657KB
Edit File
Delete File
Rename
NoSeekStream.php
0.429KB
Edit File
Delete File
Rename
PumpStream.php
3.988KB
Edit File
Delete File
Rename
Query.php
3.408KB
Edit File
Delete File
Rename
Request.php
3.632KB
Edit File
Delete File
Rename
Response.php
4.696KB
Edit File
Delete File
Rename
Rfc7230.php
0.675KB
Edit File
Delete File
Rename
ServerRequest.php
9.621KB
Edit File
Delete File
Rename
Stream.php
6.65KB
Edit File
Delete File
Rename
StreamDecoratorTrait.php
3.214KB
Edit File
Delete File
Rename
StreamWrapper.php
3.69KB
Edit File
Delete File
Rename
UploadedFile.php
7.589KB
Edit File
Delete File
Rename
Uri.php
22.361KB
Edit File
Delete File
Rename
UriComparator.php
1.147KB
Edit File
Delete File
Rename
UriNormalizer.php
8.136KB
Edit File
Delete File
Rename
UriResolver.php
8.583KB
Edit File
Delete File
Rename
Utils.php
14.329KB
Edit File
Delete File
Rename
functions.php
13.095KB
Edit File
Delete File
Rename
functions_include.php
0.152KB
Edit File
Delete File
Rename
<?php namespace GuzzleHttp\Psr7; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\StreamInterface; /** * PSR-7 response implementation. */ class Response implements ResponseInterface { use MessageTrait; /** @var array Map of standard HTTP status code/reason phrases */ private static $phrases = [ 100 => 'Continue', 101 => 'Switching Protocols', 102 => 'Processing', 200 => 'OK', 201 => 'Created', 202 => 'Accepted', 203 => 'Non-Authoritative Information', 204 => 'No Content', 205 => 'Reset Content', 206 => 'Partial Content', 207 => 'Multi-status', 208 => 'Already Reported', 300 => 'Multiple Choices', 301 => 'Moved Permanently', 302 => 'Found', 303 => 'See Other', 304 => 'Not Modified', 305 => 'Use Proxy', 306 => 'Switch Proxy', 307 => 'Temporary Redirect', 400 => 'Bad Request', 401 => 'Unauthorized', 402 => 'Payment Required', 403 => 'Forbidden', 404 => 'Not Found', 405 => 'Method Not Allowed', 406 => 'Not Acceptable', 407 => 'Proxy Authentication Required', 408 => 'Request Time-out', 409 => 'Conflict', 410 => 'Gone', 411 => 'Length Required', 412 => 'Precondition Failed', 413 => 'Request Entity Too Large', 414 => 'Request-URI Too Large', 415 => 'Unsupported Media Type', 416 => 'Requested range not satisfiable', 417 => 'Expectation Failed', 418 => 'I\'m a teapot', 422 => 'Unprocessable Entity', 423 => 'Locked', 424 => 'Failed Dependency', 425 => 'Unordered Collection', 426 => 'Upgrade Required', 428 => 'Precondition Required', 429 => 'Too Many Requests', 431 => 'Request Header Fields Too Large', 451 => 'Unavailable For Legal Reasons', 500 => 'Internal Server Error', 501 => 'Not Implemented', 502 => 'Bad Gateway', 503 => 'Service Unavailable', 504 => 'Gateway Time-out', 505 => 'HTTP Version not supported', 506 => 'Variant Also Negotiates', 507 => 'Insufficient Storage', 508 => 'Loop Detected', 511 => 'Network Authentication Required', ]; /** @var string */ private $reasonPhrase = ''; /** @var int */ private $statusCode = 200; /** * @param int $status Status code * @param array $headers Response headers * @param string|resource|StreamInterface|null $body Response body * @param string $version Protocol version * @param string|null $reason Reason phrase (when empty a default will be used based on the status code) */ public function __construct( $status = 200, array $headers = [], $body = null, $version = '1.1', $reason = null ) { $this->assertStatusCodeIsInteger($status); $status = (int) $status; $this->assertStatusCodeRange($status); $this->statusCode = $status; if ($body !== '' && $body !== null) { $this->stream = Utils::streamFor($body); } $this->setHeaders($headers); if ($reason == '' && isset(self::$phrases[$this->statusCode])) { $this->reasonPhrase = self::$phrases[$this->statusCode]; } else { $this->reasonPhrase = (string) $reason; } $this->protocol = $version; } public function getStatusCode() { return $this->statusCode; } public function getReasonPhrase() { return $this->reasonPhrase; } public function withStatus($code, $reasonPhrase = '') { $this->assertStatusCodeIsInteger($code); $code = (int) $code; $this->assertStatusCodeRange($code); $new = clone $this; $new->statusCode = $code; if ($reasonPhrase == '' && isset(self::$phrases[$new->statusCode])) { $reasonPhrase = self::$phrases[$new->statusCode]; } $new->reasonPhrase = (string) $reasonPhrase; return $new; } private function assertStatusCodeIsInteger($statusCode) { if (filter_var($statusCode, FILTER_VALIDATE_INT) === false) { throw new \InvalidArgumentException('Status code must be an integer value.'); } } private function assertStatusCodeRange($statusCode) { if ($statusCode < 100 || $statusCode >= 600) { throw new \InvalidArgumentException('Status code must be an integer value between 1xx and 5xx.'); } } }
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat