We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d16f9e commit bbb497eCopy full SHA for bbb497e
README.md
@@ -109,8 +109,8 @@ An example on how to create a new order to be shipped:
109
$order->items[] = $item;
110
111
// This will var_dump the newly created order, and order should be wrapped in an array.
112
- var_dump($shipStation->orders->post([$order], 'createorder'));
113
- // or with the helper: $shipStation->orders->create([$order]); would be the same.
+ var_dump($shipStation->orders->post($order, 'createorder'));
+ // or with the helper: $shipStation->orders->create($order); would be the same.
114
```
115
### DELETE
116
```php
0 commit comments