Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephangroen committed Aug 12, 2015
1 parent e88c530 commit 588b54e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ the api connection.
$item = new Item($connection);
$item->get();

// List items with filter
// List items with filter (using a filter always returns a collection)
$item = new Item($connection);
$item->filter("Code eq '$productcode'"); // Uses filters as described in Exact API docs (odata filters)
$items = $item->filter("Code eq '$productcode'"); // Uses filters as described in Exact API docs (odata filters)
// Create new invoice with invoice lines
$items[] = [
Expand Down

0 comments on commit 588b54e

Please sign in to comment.