diff options
author | Mario <mario@mariovavti.com> | 2024-06-10 08:22:43 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-06-10 08:22:43 +0000 |
commit | 388e7c88dff956dca9e3498076e9f3cf49a153c8 (patch) | |
tree | 3bf21521a3b7e49299faa57605c9ec683726493f /include | |
parent | 9348bd6ea5bc8573201ed773c1de26949dd1b510 (diff) | |
download | volse-hubzilla-388e7c88dff956dca9e3498076e9f3cf49a153c8.tar.gz volse-hubzilla-388e7c88dff956dca9e3498076e9f3cf49a153c8.tar.bz2 volse-hubzilla-388e7c88dff956dca9e3498076e9f3cf49a153c8.zip |
remove superfluous param, fix wrong var and declare types for unparse_url()
Diffstat (limited to 'include')
-rw-r--r-- | include/network.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/network.php b/include/network.php index 1978eb868..bb5bc1ce7 100644 --- a/include/network.php +++ b/include/network.php @@ -2146,9 +2146,9 @@ function get_request_string($url) { * * @param array $parsed_url An associative array as produced by `parse_url`. * - * @return The reassembled URL as a string. + * @return string The reassembled URL as a string. */ -function unparse_url($parsed_url) { +function unparse_url(array $parsed_url): string { $scheme = isset($parsed_url['scheme']) ? $parsed_url['scheme'] . '://' : ''; $host = isset($parsed_url['host']) ? $parsed_url['host'] : ''; $port = isset($parsed_url['port']) ? ':' . $parsed_url['port'] : ''; @@ -2158,5 +2158,5 @@ function unparse_url($parsed_url) { $path = isset($parsed_url['path']) ? $parsed_url['path'] : ''; $query = isset($parsed_url['query']) ? '?' . $parsed_url['query'] : ''; $fragment = isset($parsed_url['fragment']) ? '#' . $parsed_url['fragment'] : ''; - return "$scheme$user$pass$host$port$path$query$fragment"; + return $scheme . $user . $pass . $host . $port . $path . $query . $fragment; } |