Skip to content
New issue

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

PHP Example 4 help text is wrong #53

Open
richardczeiger opened this issue Oct 27, 2023 · 0 comments
Open

PHP Example 4 help text is wrong #53

richardczeiger opened this issue Oct 27, 2023 · 0 comments

Comments

@richardczeiger
Copy link

The PHP comment and execution in Example 4 is incorrect:

  • We've set the first two arguments on the method in order to limit the amount
  • of records returned. The second argument is the number of records to retrieve
  • (10 in this case) and the first is the record to start on.
    $printJobs = $client->viewPrintJobs(0, 2);

This should say:

  • We've set the first two arguments on the method in order to limit the amount
  • of records returned. The first argument is the number of records to retrieve
  • (2 in this case) and the second is the record to start on.
    $printJobs = $client->viewPrintJobs(2, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant