php-extended / php-http-client-trycatch
A client that tries to get a response from a client, but tries to get it from the other if the first fail
4.0.0
2022-05-31 06:31 UTC
Requires
- php: >=7.2
- php-extended/polyfill-php80-stringable: ^1
- psr/http-client: ^1
Requires (Dev)
README
A client that tries to get a response from a client, but tries to get it from the other if the first fail.
Installation
The installation of this library is made via composer.
Download composer.phar
from their website.
Then add to your composer.json :
"require": {
...
"php-extended/php-http-client-trycatch": "^3",
...
}
Then run php composer.phar update
to install this library.
The autoloading of all classes of this library is made through composer's autoloader.
Basic Usage
This library may be used the following way :
/* @var $defaultClient Psr\Http\Client\ClientInterface */ // psr-18
/* @var $elseClient Psr\Http\Client\ClientInterface */ // psr-18
/* @var $client Psr\Http\Client\ClientInterface */ // psr-18
$client = new TryCatchClient($defaultClient, $elseClient);
$response = $client->sendRequest($request);
/* @var $response Psr\Http\Message\ResponseInterface */
// if $defaultClient throws, uses $elseClient
// if $elseClient throws, then throws that second exception
License
MIT (See license file).