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
When I want to list items like this:
$plans = $provider->listPlans(); $products = $provider->listProducts();
I am getting this error:
Apparently in the url parameters 'true' is being sent as a string and not as a boolean in total_required.
Even passing parameters to the function as the documentation says it returns the same error:
$fields = ['id', 'product_id', 'name', 'description']; $plans = $provider->listPlans(1, 30, true, $fields);
My code:
The text was updated successfully, but these errors were encountered:
Fixes #643
5c8b91c
187add0
Fixes #643 for v3.0
031d69d
No branches or pull requests
When I want to list items like this:
$plans = $provider->listPlans();
$products = $provider->listProducts();
I am getting this error:
Apparently in the url parameters 'true' is being sent as a string and not as a boolean in total_required.
Even passing parameters to the function as the documentation says it returns the same error:
$fields = ['id', 'product_id', 'name', 'description'];
$plans = $provider->listPlans(1, 30, true, $fields);
My code:
The text was updated successfully, but these errors were encountered: