We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a656dd6 commit a2c1392Copy full SHA for a2c1392
1 file changed
src/HttpMessage/Utility/Uri.php
@@ -68,7 +68,7 @@ public static function fromParsed(array $parsed): BdkUri
68
foreach ($parsed as $key => $value) {
69
$method = 'with' . \ucfirst($key);
70
/** @var BdkUri */
71
- $uri = \call_user_func_array([uri, $method], (array) $value);
+ $uri = \call_user_func_array([$uri, $method], (array) $value);
72
}
73
return $uri;
74
0 commit comments