-
Notifications
You must be signed in to change notification settings - Fork 67
Open
Description
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);
Metadata
Metadata
Assignees
Labels
No labels