| Total Complexity | 1 | 
| Total Lines | 21 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 9 | trait Helpers | ||
| 10 | { | ||
| 11 | /** | ||
| 12 | * Confirm payment for an order. | ||
| 13 | * | ||
| 14 | * @param string $order_id | ||
| 15 | * @param string $processing_instruction | ||
| 16 | * | ||
| 17 | * @throws Throwable | ||
| 18 | * | ||
| 19 | * @return array|\Psr\Http\Message\StreamInterface|string | ||
| 20 | */ | ||
| 21 | public function setupOrderConfirmation(string $order_id, string $processing_instruction = '') | ||
| 32 |