1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36:
<?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();
}