From c815dd86c381e6b9d73234d88d65b75cb7cb0ce3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20V=C3=ADtores?= Date: Wed, 24 Apr 2024 17:09:29 +0200 Subject: [PATCH 1/2] fix type definition for responses in ClientFake::addResponses method --- src/Testing/ClientFake.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Testing/ClientFake.php b/src/Testing/ClientFake.php index fb50633d..d48ba9b2 100644 --- a/src/Testing/ClientFake.php +++ b/src/Testing/ClientFake.php @@ -38,7 +38,7 @@ public function __construct(protected array $responses = []) } /** - * @param array $responses + * @param array $responses */ public function addResponses(array $responses): void { From bf2795c1944482c1bf9bb44de0cbd81b0b268eba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20V=C3=ADtores?= Date: Mon, 7 Apr 2025 10:48:38 +0200 Subject: [PATCH 2/2] fix lint advises --- src/Testing/ClientFake.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Testing/ClientFake.php b/src/Testing/ClientFake.php index e2be7b3b..828f2a28 100644 --- a/src/Testing/ClientFake.php +++ b/src/Testing/ClientFake.php @@ -39,7 +39,7 @@ class ClientFake implements ClientContract public function __construct(protected array $responses = []) {} /** - * @param array $responses + * @param array $responses */ public function addResponses(array $responses): void {