Whether the URI is a network-path reference.
A relative reference that begins with two slash characters is termed an network-path reference.
https://datatracker.ietf.org/doc/html/rfc3986#section-4.2
public static function isNetworkPathReference(UriInterface $uri) : bool { return $uri->getScheme() === '' && $uri->getAuthority() !== ''; }