Skip to content

Commit

Permalink
nitpicking
Browse files Browse the repository at this point in the history
  • Loading branch information
RogierW committed Apr 6, 2024
1 parent d48be5d commit 52290f4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Support/LocalChallengeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 52290f4

Please sign in to comment.