WP File Manager
Current Path:
/
home
/
itutorethiopia
/
public_html
/
vendor
/
omnipay
/
paypal
/
src
/
Name
Action
..
ExpressGateway.php
Edit
ExpressInContextGateway.php
Edit
Message
PayPalItem.php
Edit
PayPalItemBag.php
Edit
ProGateway.php
Edit
RestGateway.php
Edit
Support
Editing: PayPalItem.php
<?php /** * Paypal Item */ namespace Omnipay\PayPal; use Omnipay\Common\Item; /** * Class PayPalItem * * @package Omnipay\PayPal */ class PayPalItem extends Item { /** * {@inheritDoc} */ public function getCode() { return $this->getParameter('code'); } /** * Set the item code */ public function setCode($value) { return $this->setParameter('code', $value); } }