Hey there,
i got this:
$whenUtc = ZonedDateTime::parse('2021-07-18T07:00:00Z');
$whenUtc->getTimezone()->isEqualTo(TimeZone::utc()); // -> false
the timezone is then Z
same with etc/UTC which represents the same TimeZone.
Do you want to harmonize those identifiers to represent a Timezone?
e.g.
TimeZone::utc()->isEqualTo(TimeZone::parse('UTC')) // true
would be happy to submit a PR