Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Jun 11, 2022
1 parent d3cacf0 commit b61a528
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Rdap.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,10 @@ public function domain(
int $timeoutInSeconds = null,
int $retryTimes = null,
int $sleepInMillisecondsBetweenRetries = null,
): ?DomainResponse
{
): ?DomainResponse {
$dnsServer = $this->rdapDns->getServerForDomain($domain);

if (!$dnsServer) {
if (! $dnsServer) {
throw CouldNotFindRdapServer::forDomain($domain);
}

Expand Down

0 comments on commit b61a528

Please sign in to comment.