From 16c27d36009c48933c91a2a1b948004e9516353d Mon Sep 17 00:00:00 2001 From: jdarwood007 Date: Mon, 4 Dec 2023 14:26:15 -0800 Subject: [PATCH] Use Url instead of object --- Sources/Url.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Url.php b/Sources/Url.php index df7225eabc..7d72a52fa7 100644 --- a/Sources/Url.php +++ b/Sources/Url.php @@ -777,9 +777,9 @@ public static function urlToIri(string $url): object * Backward compatibility wrapper for the proxied method. * * @param string $url The original URL of the requested resource. - * @return object A new instance of this class for the proxied URL. + * @return Url A new instance of this class for the proxied URL. */ - public static function getProxiedUrl(string $url): object + public static function getProxiedUrl(string $url): Url { $url = new self($url);