We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5d9ec2 commit 7243b35Copy full SHA for 7243b35
src/Curl/Url.php
@@ -192,7 +192,8 @@ function ($matches) {
192
*
193
* Combine url components into a url.
194
*/
195
- private function unparseUrl($parsed_url) {
+ private function unparseUrl($parsed_url)
196
+ {
197
$scheme = isset($parsed_url['scheme']) ? $parsed_url['scheme'] . '://' : '';
198
$user = isset($parsed_url['user']) ? $parsed_url['user'] : '';
199
$pass = isset($parsed_url['pass']) ? ':' . $parsed_url['pass'] : '';
0 commit comments