From fbd6d18c57512dc3ff6e75f439f8056af1fb0b11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Tue, 6 Jun 2023 15:03:05 +0200 Subject: [PATCH] [HttpClient] Remove final keyword on AsyncResponse --- src/Symfony/Component/HttpClient/Response/AsyncResponse.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpClient/Response/AsyncResponse.php b/src/Symfony/Component/HttpClient/Response/AsyncResponse.php index 66152e3d90c7e..e37278f79f711 100644 --- a/src/Symfony/Component/HttpClient/Response/AsyncResponse.php +++ b/src/Symfony/Component/HttpClient/Response/AsyncResponse.php @@ -27,7 +27,7 @@ * * @author Nicolas Grekas */ -final class AsyncResponse implements ResponseInterface, StreamableInterface +class AsyncResponse implements ResponseInterface, StreamableInterface { use CommonResponseTrait;