Data
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 0
dl 0
loc 30
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
namespace Omnipay\Gtpay\Message;
3
4
class Data
5
{
6
7
8
    const MERCHANT_ID = 'merchant_id';
9
10
    const TRANSACTION_ID = 'transaction_id';
11
12
    const TRANSACTION_MEMO = 'transaction_memo';
13
14
    const TRANSACTION_AMOUNT = 'transaction_amount';
15
16
    const TRANSACTION_CURRENCY = 'transaction_currency';
17
18
    const NOTIFY_URL = 'notify_url';
19
20
    const GATEWAY_FIRST = 'gateway_first';
21
22
    const ECHO_DATA = 'echo_data';
23
24
    const CUSTOMER_NAME = 'customer_name';
25
26
    const CUSTOMER_ID = 'customer_id';
27
28
    const GTPAY_HASH = 'gtpay_hash';
29
30
    const GATEWAY_NAME = 'gateway_name';
31
32
    const HASH_KEY = 'hash_key';
33
}
34