Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed Apr 3, 2024
1 parent 6da6bae commit b507dde
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/AcmeFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Kelunik\AcmeClient;

use Amp\ByteStream\ResourceOutputStream;
use Amp\Log\ConsoleFormatter;
use Amp\Log\StreamHandler;
use Kelunik\Acme\AcmeClient;
Expand Down
10 changes: 8 additions & 2 deletions src/Commands/Issue.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,14 @@ function ($authorizationUrl) use ($acme, $key, $domains, $docRoots, $user) {
throw new AcmeException('Unknown identifier returned: ' . $name);
}

return yield from $this->solveChallenge($acme, $key, $authorization, $name, $docRoots[$index],
$user);
return yield from $this->solveChallenge(
$acme,
$key,
$authorization,
$name,
$docRoots[$index],
$user
);
}
);

Expand Down

0 comments on commit b507dde

Please sign in to comment.