PHP-OAuth2 icon indicating copy to clipboard operation
PHP-OAuth2 copied to clipboard

Deprecated: http_build_query(): Passing null to parameter #2 ($numeric_prefix) of type string is deprecated in

Open stccorp opened this issue 3 years ago • 1 comments

Deprecated: http_build_query(): Passing null to parameter #2 ($numeric_prefix) of type string is deprecated in /vendor/adoy/oauth2/src/OAuth2/Client.php on line 425

Hello, just to let you know about this warning. I am using php 8.1

stccorp avatar Sep 10 '22 21:09 stccorp

line 425 http_build_query($parameters, null, '&'); line 435 http_build_query($parameters, null, '&');

need to change to http_build_query($parameters, '', '&');

stccorp avatar Sep 10 '22 23:09 stccorp