PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
omnipay
/
common
/
src
/
Common
<?php /** * Cart Item interface */ namespace Omnipay\Common; /** * Cart Item interface * * This interface defines the functionality that all cart items in * the Omnipay system are to have. */ interface ItemInterface { /** * Name of the item */ public function getName(); /** * Description of the item */ public function getDescription(); /** * Quantity of the item */ public function getQuantity(); /** * Price of the item */ public function getPrice(); }
[-] GatewayFactory.php
[edit]
[-] ParametersTrait.php
[edit]
[-] ItemInterface.php
[edit]
[-] GatewayInterface.php
[edit]
[+]
..
[-] Item.php
[edit]
[+]
Exception
[+]
Message
[-] Issuer.php
[edit]
[-] ItemBag.php
[edit]
[-] PaymentMethod.php
[edit]
[+]
Http
[-] AbstractGateway.php
[edit]
[-] CreditCard.php
[edit]
[-] Helper.php
[edit]