From bd321f05a7dd8d96b326836d20763c88489082d6 Mon Sep 17 00:00:00 2001 From: Hugo Sales Date: Thu, 22 Jul 2021 12:34:59 +0000 Subject: [PATCH] [TESTS] Exclude HTTPClient from testing, as it's a simple wrapper and we don't want to be performing HTTP requests in tests, for speed and reliability --- src/Core/HTTPClient.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Core/HTTPClient.php b/src/Core/HTTPClient.php index 5174a5142b..ef14bbdf2a 100644 --- a/src/Core/HTTPClient.php +++ b/src/Core/HTTPClient.php @@ -21,6 +21,9 @@ namespace App\Core; use Symfony\Contracts\HttpClient\HttpClientInterface; +/** + * @codeCoverageIgnore + */ abstract class HTTPClient { private static ?Httpclientinterface $client;