Total Complexity | 5 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | final class GooglePublicDNS implements DnsCheckerInterface |
||
21 | { |
||
22 | use ConnectorAwareTrait; |
||
23 | |||
24 | private const BASE_URI = 'https://dns.google.com/resolve'; |
||
25 | |||
26 | private const STATUS_OK = 0; |
||
27 | private const DNS_TYPE_TXT = 16; |
||
28 | |||
29 | public function verify(string $domain, string $dnsDigest): bool |
||
51 |