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 433af6f commit 0250376Copy full SHA for 0250376
lib/Gitlab/HttpClient/Message/QueryStringBuilder.php
@@ -18,6 +18,7 @@ public static function build($query)
18
return static::rawurlencode($query);
19
}
20
return implode('&', array_map(function ($value, $key) {
21
+ if (null === $value) return null;
22
return static::encode($value, $key);
23
}, $query, array_keys($query)));
24
0 commit comments