Comment readded

This commit is contained in:
Michael 2023-03-09 07:05:45 +00:00
parent 0c8923aabd
commit a4503601e5
1 changed files with 2 additions and 0 deletions

View File

@ -154,6 +154,8 @@ class OAuthUtil
public static function build_http_query($params)
{
// Parameters are sorted by name, using lexicographical byte value ordering.
// Ref: Spec: 9.1.1 (1)
uksort($params, 'strcmp');
return http_build_query($params, '', null, PHP_QUERY_RFC3986);
}