X7ROOT File Manager
Current Path:
/home/notabjze/hourglass.life/wp-includes/Requests/src
home
/
notabjze
/
hourglass.life
/
wp-includes
/
Requests
/
src
/
ðŸ“
..
ðŸ“
Auth
📄
Auth.php
(860 B)
📄
Autoload.php
(9.12 KB)
📄
Capability.php
(652 B)
ðŸ“
Cookie
📄
Cookie.php
(14.75 KB)
ðŸ“
Exception
📄
Exception.php
(1.09 KB)
📄
HookManager.php
(709 B)
📄
Hooks.php
(2.85 KB)
📄
IdnaEncoder.php
(12.14 KB)
📄
Ipv6.php
(5.51 KB)
📄
Iri.php
(28.38 KB)
📄
Port.php
(1.47 KB)
ðŸ“
Proxy
📄
Proxy.php
(867 B)
📄
Requests.php
(33.2 KB)
ðŸ“
Response
📄
Response.php
(4.18 KB)
📄
Session.php
(8.79 KB)
📄
Ssl.php
(5.3 KB)
ðŸ“
Transport
📄
Transport.php
(1.51 KB)
ðŸ“
Utility
Editing: Capability.php
<?php /** * Capability interface declaring the known capabilities. * * @package Requests\Utilities */ namespace WpOrg\Requests; /** * Capability interface declaring the known capabilities. * * This is used as the authoritative source for which capabilities can be queried. * * @package Requests\Utilities */ interface Capability { /** * Support for SSL. * * @var string */ const SSL = 'ssl'; /** * Collection of all capabilities supported in Requests. * * Note: this does not automatically mean that the capability will be supported for your chosen transport! * * @var string[] */ const ALL = [ self::SSL, ]; }
Upload File
Create Folder