Skip to content

Commit

Permalink
Update PHPStan packages (#834)
Browse files Browse the repository at this point in the history
* Update PHPStan packages

* Fix phpstan issue

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Frank Dekker <fdekker@123inkt.nl>
  • Loading branch information
renovate[bot] and frankdekker committed Sep 7, 2024
1 parent 28bc62e commit aeb4ea1
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 aeb4ea1

Please sign in to comment.