From 75627d999b4192482b0c63ef87c575cef2fcd81e Mon Sep 17 00:00:00 2001 From: Harry Lewis Date: Fri, 7 Apr 2023 11:37:55 +0100 Subject: [PATCH] Add .pt to list of TLDs which don't support WHOIS privacy --- src/Helper/Utils.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Helper/Utils.php b/src/Helper/Utils.php index c0cbc1a..4d043b9 100644 --- a/src/Helper/Utils.php +++ b/src/Helper/Utils.php @@ -155,6 +155,7 @@ public static function tldSupportsWhoisPrivacy(string $tld): bool $unsupported = [ 'mx', 'es', + 'pt', ]; return !in_array(static::getRootTld($tld), $unsupported);