Skip to content

Commit

Permalink
Use Url instead of object
Browse files Browse the repository at this point in the history
  • Loading branch information
jdarwood007 committed Dec 4, 2023
1 parent 423d07d commit 16c27d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Url.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 16c27d3

Please sign in to comment.