PHP 8.2.31
Preview: Proxy.php Size: 2.01 KB
/opt/cpanel/ea-wappspector/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php

<?php

namespace GuzzleHttp\Handler;

use GuzzleHttp\Promise\PromiseInterface;
use GuzzleHttp\RequestOptions;
use Psr\Http\Message\RequestInterface;

/**
 * Provides basic proxies for handlers.
 *
 * @final
 */
class Proxy
{
    /**
     * Sends synchronous requests to a specific handler while sending all other
     * requests to another handler.
     *
     * @param callable(RequestInterface, array): PromiseInterface $default Handler used for normal responses
     * @param callable(RequestInterface, array): PromiseInterface $sync    Handler used for synchronous responses.
     *
     * @return callable(RequestInterface, array): PromiseInterface Returns the composed handler.
     */
    public static function wrapSync(callable $default, callable $sync): callable
    {
        return static function (RequestInterface $request, array $options) use ($default, $sync): PromiseInterface {
            return empty($options[RequestOptions::SYNCHRONOUS]) ? $default($request, $options) : $sync($request, $options);
        };
    }

    /**
     * Sends streaming requests to a streaming compatible handler while sending
     * all other requests to a default handler.
     *
     * This, for example, could be useful for taking advantage of the
     * performance benefits of curl while still supporting true streaming
     * through the StreamHandler.
     *
     * @param callable(RequestInterface, array): PromiseInterface $default   Handler used for non-streaming responses
     * @param callable(RequestInterface, array): PromiseInterface $streaming Handler used for streaming responses
     *
     * @return callable(RequestInterface, array): PromiseInterface Returns the composed handler.
     */
    public static function wrapStreaming(callable $default, callable $streaming): callable
    {
        return static function (RequestInterface $request, array $options) use ($default, $streaming): PromiseInterface {
            return empty($options['stream']) ? $default($request, $options) : $streaming($request, $options);
        };
    }
}

Directory Contents

Dirs: 0 × Files: 9

Name Size Perms Modified Actions
27.61 KB lrw-r--r-- 2025-08-23 22:36:01
Edit Download
657 B lrw-r--r-- 2025-08-23 22:36:01
Edit Download
1.30 KB lrw-r--r-- 2025-08-23 22:36:01
Edit Download
8.54 KB lrw-r--r-- 2025-08-23 22:36:01
Edit Download
2.83 KB lrw-r--r-- 2025-08-23 22:36:01
Edit Download
1.03 KB lrw-r--r-- 2025-08-23 22:36:01
Edit Download
6.25 KB lrw-r--r-- 2025-08-23 22:36:01
Edit Download
2.01 KB lrw-r--r-- 2025-08-23 22:36:01
Edit Download
21.63 KB lrw-r--r-- 2025-08-23 22:36:01
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).