*/ public static function provideUrlsIgnoringHttps(): array { return [ // Only the scheme differs → equal ['http://www.blogger.com/feeds/1/posts', 'https://www.blogger.com/feeds/1/posts', true], ['https://example.net/feed.xml?a=1&b=2', 'http://example.net/feed.xml?a=1&b=2', true], ['HTTP://Example.net/Feed', 'https://Example.net/Feed', true], ['HTTPS://Example.net/Feed', 'http://Example.net/Feed', true], // Fully identical → equal ['https://example.net/feed', 'https://example.net/feed', true], ['', '', true], // Path differs → not equal (scheme-only tolerance must not hide real mismatches) ['http://example.net/a', 'https://example.net/b', false], // Trailing slash is a path difference → not equal ['http://example.net/', 'https://example.net', false], // Host differs → not equal ['http://a.example.net/feed', 'https://b.example.net/feed', false], // Query differs → not equal ['https://example.net/feed?a=1', 'http://example.net/feed?a=2', false], // Non-http(s) schemes are compared as-is ['ftp://example.net/feed', 'https://example.net/feed', false], ]; } }