PrintNode/PrintNode-PHP

PHP Example 4 help text is wrong

richardczeiger opened this issue · 0 comments

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);