OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
oauth
/
vendor
/
guzzlehttp
/
guzzle
/
src
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/30/2021 11:53:27 AM
rwxr-xr-x
📄
BodySummarizer.php
631 bytes
09/30/2021 11:52:54 AM
rw-r--r--
📄
BodySummarizerInterface.php
233 bytes
09/30/2021 11:53:00 AM
rw-r--r--
📄
Client.php
17.73 KB
09/30/2021 11:53:00 AM
rw-r--r--
📄
ClientInterface.php
2.83 KB
09/30/2021 11:52:57 AM
rw-r--r--
📄
ClientTrait.php
8.79 KB
09/30/2021 11:52:53 AM
rw-r--r--
📁
Cookie
-
09/30/2021 11:53:02 AM
rwxr-xr-x
📁
Exception
-
09/30/2021 11:53:39 AM
rwxr-xr-x
📁
Handler
-
09/30/2021 11:53:35 AM
rwxr-xr-x
📄
HandlerStack.php
8.26 KB
09/30/2021 11:52:56 AM
rw-r--r--
📄
MessageFormatter.php
7.62 KB
09/30/2021 11:53:00 AM
rw-r--r--
📄
MessageFormatterInterface.php
561 bytes
09/30/2021 11:52:57 AM
rw-r--r--
📄
Middleware.php
10.9 KB
09/30/2021 11:52:59 AM
rw-r--r--
📄
Pool.php
4.61 KB
09/30/2021 11:52:55 AM
rw-r--r--
📄
PrepareBodyMiddleware.php
3.07 KB
09/30/2021 11:52:57 AM
rw-r--r--
📄
RedirectMiddleware.php
7.5 KB
09/30/2021 11:52:54 AM
rw-r--r--
📄
RequestOptions.php
10.32 KB
09/30/2021 11:52:56 AM
rw-r--r--
📄
RetryMiddleware.php
3.52 KB
09/30/2021 11:52:59 AM
rw-r--r--
📄
TransferStats.php
3.11 KB
09/30/2021 11:52:55 AM
rw-r--r--
📄
Utils.php
12.85 KB
09/30/2021 11:52:58 AM
rw-r--r--
📄
functions.php
5.56 KB
09/30/2021 11:52:52 AM
rw-r--r--
📄
functions_include.php
162 bytes
09/30/2021 11:52:53 AM
rw-r--r--
Editing: ClientInterface.php
Close
<?php namespace GuzzleHttp; use GuzzleHttp\Exception\GuzzleException; use GuzzleHttp\Promise\PromiseInterface; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\UriInterface; /** * Client interface for sending HTTP requests. */ interface ClientInterface { /** * The Guzzle major version. */ const MAJOR_VERSION = 7; /** * Send an HTTP request. * * @param RequestInterface $request Request to send * @param array $options Request options to apply to the given * request and to the transfer. * * @throws GuzzleException */ public function send(RequestInterface $request, array $options = []): ResponseInterface; /** * Asynchronously send an HTTP request. * * @param RequestInterface $request Request to send * @param array $options Request options to apply to the given * request and to the transfer. */ public function sendAsync(RequestInterface $request, array $options = []): PromiseInterface; /** * Create and send an HTTP request. * * Use an absolute path to override the base path of the client, or a * relative path to append to the base path of the client. The URL can * contain the query string as well. * * @param string $method HTTP method. * @param string|UriInterface $uri URI object or string. * @param array $options Request options to apply. * * @throws GuzzleException */ public function request(string $method, $uri, array $options = []): ResponseInterface; /** * Create and send an asynchronous HTTP request. * * Use an absolute path to override the base path of the client, or a * relative path to append to the base path of the client. The URL can * contain the query string as well. Use an array to provide a URL * template and additional variables to use in the URL template expansion. * * @param string $method HTTP method * @param string|UriInterface $uri URI object or string. * @param array $options Request options to apply. */ public function requestAsync(string $method, $uri, array $options = []): PromiseInterface; /** * Get a client configuration option. * * These options include default request options of the client, a "handler" * (if utilized by the concrete client), and a "base_uri" if utilized by * the concrete client. * * @param string|null $option The config option to retrieve. * * @return mixed * * @deprecated ClientInterface::getConfig will be removed in guzzlehttp/guzzle:8.0. */ public function getConfig(?string $option = null); }