1
0
mirror of https://github.com/danog/dns.git synced 2025-01-23 05:51:11 +01:00

Fix code style

This commit is contained in:
Niklas Keller 2017-06-23 17:37:40 +02:00
parent a4b714c0b0
commit 1bd8870003

View File

@ -271,7 +271,7 @@ class BasicResolver implements Resolver {
$name = \inet_ntop(\strrev($packedIp)) . ".in-addr.arpa"; $name = \inet_ntop(\strrev($packedIp)) . ".in-addr.arpa";
} }
} }
} else if (\in_array($type, [Record::A, Record::AAAA])) { } elseif (\in_array($type, [Record::A, Record::AAAA])) {
$name = normalizeDnsName($name); $name = normalizeDnsName($name);
} }