PATH:
home
/
cf7x
/
public_html
/
wp-includes_
/
Requests
/
src
<?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, ]; }
[-] Auth.php
[open]
[-] Autoload.php
[open]
[+]
..
[-] Cookie.php
[open]
[-] Transport.php
[open]
[-] Hooks.php
[open]
[+]
Proxy
[-] Ipv6.php
[open]
[-] Capability.php
[open]
[-] Response.php
[open]
[+]
Response
[-] Iri.php
[open]
[-] Session.php
[open]
[+]
Transport
[+]
Auth
[-] Proxy.php
[open]
[-] Port.php
[open]
[-] Exception.php
[open]
[-] error_log
[open]
[-] HookManager.php
[open]
[+]
Cookie
[-] IdnaEncoder.php
[open]
[-] Ssl.php
[open]
[+]
Utility
[+]
Exception
[-] Requests.php
[open]