Skip to content

Commit

Permalink
Merge branch 'master' into renovate/phpunit-phpunit-11.x
Browse files Browse the repository at this point in the history
  • Loading branch information
frankdekker committed Sep 7, 2024
2 parents 3c61dcf + aeb4ea1 commit a79a8f9
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
50 changes: 25 additions & 25 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Utility/UriUtil.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static function credentials(?UriInterface $uri): array
return [null, null];
}

$username = isset($matches[1]) ? urldecode($matches[1]) : null;
$username = urldecode($matches[1]);
$username = $username === '' ? null : $username;

$password = isset($matches[2]) ? urldecode($matches[2]) : null;
Expand Down

0 comments on commit a79a8f9

Please sign in to comment.