### Description The following code: ```php <?php echo new \Uri\WhatWg\Url('scheme://host/path')->withHost('333.333.333.333')->toAsciiString(); ``` Resulted in this output: ``` scheme://host ``` But I expected this output instead: ``` scheme://333.333.333.333 ``` `333.333.333.333` is not a valid IPv4 but is a valid registered name so it should not silently fail at all. see: https://3v4l.org/un12T/rfc#vgit.master ### PHP Version ```plain PHP 8.5-dev ``` ### Operating System _No response_