When I'm getting basic information about the domain
<?php
use Iodev\Whois\Factory;
$domainInfo = $whois->loadDomainInfo("domain.com");
var_dump($domainInfo->expirationDate);
within the field expirationDate I'm getting a timestamp, which the I can convert to an object.
My question is, what timezone is used for that timestamp. I assume that the library is not providing this information as I wasn't able to fetch it via whois database. Is there a way to obtain the list of timezones for each domain type?