From 52290f402f786ff1adf73067c3054287c4963d44 Mon Sep 17 00:00:00 2001 From: Rogier van der Werf Date: Sat, 6 Apr 2024 09:45:56 +0200 Subject: [PATCH] nitpicking --- src/Support/LocalChallengeTest.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Support/LocalChallengeTest.php b/src/Support/LocalChallengeTest.php index 61eb600..5e99643 100644 --- a/src/Support/LocalChallengeTest.php +++ b/src/Support/LocalChallengeTest.php @@ -11,8 +11,12 @@ class LocalChallengeTest { private const DEFAULT_NAMESERVER = 'dns.google.com'; - public static function http(string $domain, string $token, string $keyAuthorization, HttpClientInterface $httpClient): void - { + public static function http( + string $domain, + string $token, + string $keyAuthorization, + HttpClientInterface $httpClient + ): void { $response = $httpClient->get($domain . '/.well-known/acme-challenge/' . $token, maxRedirects: 1); $body = $response->getBody();