Changes:
- documented null value - two ' to much!
This commit is contained in:
parent
202857ba7d
commit
657a8a7cb5
1 changed files with 3 additions and 3 deletions
|
@ -440,7 +440,7 @@ class Network
|
|||
* Glue url parts together
|
||||
*
|
||||
* @param array $parsed URL parts
|
||||
* @return string The glued URL.
|
||||
* @return string|null The glued URL or null on error
|
||||
* @deprecated since version 2021.12, use GuzzleHttp\Psr7\Uri::fromParts($parts) instead
|
||||
*/
|
||||
public static function unparseURL(array $parsed): string
|
||||
|
@ -458,7 +458,7 @@ class Network
|
|||
$fragment = $get('fragment');
|
||||
$authority = ($userinfo !== null ? $userinfo . '@' : '') .
|
||||
$get('host') .
|
||||
($port ? ':$port' : '');
|
||||
($port ? ":$port" : '');
|
||||
|
||||
return (strlen($scheme) ? $scheme . ':' : '') .
|
||||
(strlen($authority) ? '//' . $authority : '') .
|
||||
|
|
Loading…
Reference in a new issue