Exception TypeError in ReportUtility if no url path given

A link like "https://www.abc.de?foo=bar throws a exception in line 110 of ReportUtility.php because parse_url returns NULL. This can be easy fixed with a empty string default like this: $extension = pathinfo(parse_url($url, PHP_URL_PATH) ?? '', PATHINFO_EXTENSION);