Skip to content

PHP Example 4 help text is wrong #53

@richardczeiger

Description

@richardczeiger

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions