diff --git a/src/Client.php b/src/Client.php index b90fcd3..37cb21d 100644 --- a/src/Client.php +++ b/src/Client.php @@ -25,6 +25,11 @@ final class Client implements HttpClient, HttpAsyncClient */ private $client; + /** + * If you pass a Guzzle instance as $client, make sure to configure Guzzle to not + * throw exceptions on HTTP error status codes, or this adapter will violate PSR-18. + * See also self::buildClient at the bottom of this class. + */ public function __construct(?ClientInterface $client = null) { if (!$client) {