From 350fd3e7d86190cde13156a357173e0399f56d7a Mon Sep 17 00:00:00 2001 From: David Buchmann Date: Tue, 17 Jun 2025 15:54:27 +0200 Subject: [PATCH] since version 3, the factories are the PSR-17 factories --- src/ProxyClient/HttpProxyClient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ProxyClient/HttpProxyClient.php b/src/ProxyClient/HttpProxyClient.php index 10e77539..2fd4b968 100644 --- a/src/ProxyClient/HttpProxyClient.php +++ b/src/ProxyClient/HttpProxyClient.php @@ -40,9 +40,9 @@ abstract class HttpProxyClient implements ProxyClient * * @param Dispatcher $httpDispatcher Helper to send instructions to the caching proxy * @param array $options Options for this client - * @param RequestFactoryInterface|null $requestFactory Factory for PSR-7 messages. If none supplied, + * @param RequestFactoryInterface|null $requestFactory PSR-17 factory for PSR-7 messages. If none supplied, * a default one is created - * @param StreamFactoryInterface|null $streamFactory Factory for PSR-7 streams. If none supplied, + * @param StreamFactoryInterface|null $streamFactory PSR-17 factory for PSR-7 streams. If none supplied, * a default one is created */ public function __construct(