### Description The following code: ```php <?php date_default_timezone_set('UTC'); echo MessageFormatter::formatMessage( 'fr_FR', '{datetime, time, short}', ['datetime' => new DateTimeImmutable('2023-03-27T12:00', new DateTimeZone('Europe/Paris'))] ); ``` Resulted in this output: ``` 10:00 ``` But I expected this output instead: ``` 12:00 ``` ### PHP Version all ### Operating System _No response_