for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Omnipay\BillPay;
/**
* Class Item
*
* @author Andreas Lange <[email protected]>
* @copyright 2016, Connox GmbH
* @license MIT
*/
class Item extends \Omnipay\Common\Item implements ItemInterface
{
* ID of the item
* @return string
public function getId()
return $this->getParameter('id');
}
* Price of the item (net amount, excluding taxes)
public function getPriceNet()
return $this->getParameter('priceNet');
* Sets the ID of the item
* @param string $value
* @return Item
public function setId($value)
return $this->setParameter('id', $value);
* Sets the price of the item (net amount, excluding taxes)
public function setPriceNet($value)
return $this->setParameter('priceNet', $value);