wp-includes/SimplePie/src/Cache.php:98Parse a URL into an array
$urlstringSimplePie\array<string, public static function parse_URL(string $url) { $parsedUrl = parse_url($url); if ($parsedUrl === false) { return []; } $params = array_merge($parsedUrl, ['extras' => []]); if (isset($params['query'])) { parse_str($params['query'], $params['extras']); } return $params; }One change between 6.7.7 and 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
array to SimplePie\array<string,.verified against sourcesrc/wp-includes/SimplePie/src/Cache.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.