ItemInterface
last analyzed

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 16
ccs 0
cts 0
cp 0
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
getId() 0 1 ?
getPriceNet() 0 1 ?
1
<?php
2
3
namespace Omnipay\BillPay;
4
5
/**
6
 * Cart Item interface BillPay extension
7
 */
8
interface ItemInterface extends \Omnipay\Common\ItemInterface
9
{
10
    /**
11
     * ID of the item
12
     *
13
     * @return string
14
     */
15
    public function getId();
16
17
    /**
18
     * Price of the item (net amount, excluding taxes)
19
     *
20
     * @return string
21
     */
22
    public function getPriceNet();
23
}
24