| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public function setupOrderConfirmation(string $order_id, string $processing_instruction = '') |
||
| 22 | { |
||
| 23 | $body = [ |
||
| 24 | 'processing_instruction' => $processing_instruction, |
||
| 25 | 'application_context' => $this->experience_context, |
||
| 26 | 'payment_source' => $this->payment_source, |
||
| 27 | ]; |
||
| 28 | |||
| 29 | return $this->confirmOrder($order_id, $body); |
||
|
|
|||
| 30 | } |
||
| 32 |