Open offsky opened 2 years ago
I am upgrading my project to PHP 8.1 and encountered a deprecation warning when using phpWhois. The problem is in converting a boolean to an array. Pretty simple fix.
In whois.parser.php Line 808 $res = []; Line 844 if (empty($res)) return $date;
$res = [];
if (empty($res)) return $date;
I am upgrading my project to PHP 8.1 and encountered a deprecation warning when using phpWhois. The problem is in converting a boolean to an array. Pretty simple fix.
In whois.parser.php Line 808
$res = [];
Line 844if (empty($res)) return $date;