Skip to content

Commit 7243b35

Browse files
committed
Clean up
1 parent b5d9ec2 commit 7243b35

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Curl/Url.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,8 @@ function ($matches) {
192192
*
193193
* Combine url components into a url.
194194
*/
195-
private function unparseUrl($parsed_url) {
195+
private function unparseUrl($parsed_url)
196+
{
196197
$scheme = isset($parsed_url['scheme']) ? $parsed_url['scheme'] . '://' : '';
197198
$user = isset($parsed_url['user']) ? $parsed_url['user'] : '';
198199
$pass = isset($parsed_url['pass']) ? ':' . $parsed_url['pass'] : '';

0 commit comments

Comments
 (0)