| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | public function complete($id, $paymentPending = null) |
||
| 47 | { |
||
| 48 | $resource = "draft_orders/{$id}/complete"; |
||
| 49 | $query = $paymentPending === true ? ['payment_pending' => 'true'] : []; |
||
| 50 | $data = $this->client->put($resource, [], $query); |
||
| 51 | return $this->create($data['draft_order']); |
||
| 52 | } |
||
| 53 | } |