Priority File Manager

📁 public_html
Base Directory:
/home/ecedu/public_html/wp-includes/Requests/src
NameTypeSizeActions
📁 .. Folder -
📁 Auth Folder -
📄 Auth.php File 860
Edit Download
📄 Autoload.php File 9335
Edit Download
📄 Capability.php File 652
Edit Download
📁 Cookie Folder -
📄 Cookie.php File 15389
Edit Download
📁 Exception Folder -
📄 Exception.php File 1114
Edit Download
📄 HookManager.php File 709
Edit Download
📄 Hooks.php File 3032
Edit Download
📄 IdnaEncoder.php File 12435
Edit Download
📄 Ipv6.php File 5639
Edit Download
📄 Iri.php File 29622
Edit Download
📄 Port.php File 1505
Edit Download
📁 Proxy Folder -
📄 Proxy.php File 867
Edit Download
📄 Requests.php File 34001
Edit Download
📁 Response Folder -
📄 Response.php File 4281
Edit Download
📄 Session.php File 9107
Edit Download
📄 Ssl.php File 5425
Edit Download
📁 Transport Folder -
📄 Transport.php File 1544
Edit Download
📁 Utility Folder -

View File: Transport.php

<?php
/**
 * Base HTTP transport
 *
 * @package Requests\Transport
 */

namespace WpOrg\Requests;

/**
 * Base HTTP transport
 *
 * @package Requests\Transport
 */
interface Transport {
	/**
	 * Perform a request
	 *
	 * @param string $url URL to request
	 * @param array $headers Associative array of request headers
	 * @param string|array $data Data to send either as the POST body, or as parameters in the URL for a GET/HEAD
	 * @param array $options Request options, see {@see \WpOrg\Requests\Requests::response()} for documentation
	 * @return string Raw HTTP result
	 */
	public function request($url, $headers = [], $data = [], $options = []);

	/**
	 * Send multiple requests simultaneously
	 *
	 * @param array $requests Request data (array of 'url', 'headers', 'data', 'options') as per {@see \WpOrg\Requests\Transport::request()}
	 * @param array $options Global options, see {@see \WpOrg\Requests\Requests::response()} for documentation
	 * @return array Array of \WpOrg\Requests\Response objects (may contain \WpOrg\Requests\Exception or string responses as well)
	 */
	public function request_multiple($requests, $options);

	/**
	 * Self-test whether the transport can be used.
	 *
	 * The available capabilities to test for can be found in {@see \WpOrg\Requests\Capability}.
	 *
	 * @param array<string, bool> $capabilities Optional. Associative array of capabilities to test against, i.e. `['<capability>' => true]`.
	 * @return bool Whether the transport can be used.
	 */
	public static function test($capabilities = []);
}