We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a bug in php 8.3.0, when you send in null as 3th parameter to http_build_query https://3v4l.org/nHIkP
so if you try to search for ['index'=> a, 'limit' => 5] you get index=alimit=5 instead of index=a&limit=5
['index'=> a, 'limit' => 5]
index=alimit=5
index=a&limit=5
Sugestion A: flag package as incompatible with php 8.3.0
Sugestion B: update the call so it dosn't send null to http_build_query
Analytics
4.11.2
The text was updated successfully, but these errors were encountered:
Hello, thats a interesting bug, thanks for the heads up, this will be fixed in the next release ! algolia/api-clients-automation#4416
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Description
There is a bug in php 8.3.0, when you send in null as 3th parameter to http_build_query
https://3v4l.org/nHIkP
so if you try to search for
['index'=> a, 'limit' => 5]
you getindex=alimit=5
instead ofindex=a&limit=5
Sugestion A: flag package as incompatible with php 8.3.0
Sugestion B: update the call so it dosn't send null to http_build_query
Client
Analytics
Version
4.11.2
Relevant log output
The text was updated successfully, but these errors were encountered: