Skip to content

Commit 461258f

Browse files
stas17m1guelpf
authored andcommitted
fix ci
1 parent 0250376 commit 461258f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/Gitlab/HttpClient/Message/QueryStringBuilder.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ public static function build($query)
1818
return static::rawurlencode($query);
1919
}
2020
return implode('&', array_map(function ($value, $key) {
21-
if (null === $value) return null;
21+
if (null === $value) {
22+
return null;
23+
}
2224
return static::encode($value, $key);
2325
}, $query, array_keys($query)));
2426
}

0 commit comments

Comments
 (0)