OrderResponse   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 13
dl 0
loc 29
ccs 1
cts 1
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 1 1
1
<?php
2
3
namespace Pronamic\WordPress\Pay\Gateways\Ingenico\DirectLink;
4
5
/**
6
 * Title: Ingenico DirectLink order response
7
 * Description:
8
 * Copyright: 2005-2021 Pronamic
9
 * Company: Pronamic
10
 *
11
 * @author  Remco Tolsma
12
 * @version 2.0.0
13
 * @since   1.0.0
14
 */
15
class OrderResponse {
16
	public $order_id;
17
18
	public $pay_id;
19
20
	public $nc_status;
21
22
	public $nc_error;
23
24
	public $nc_error_plus;
25
26
	public $acceptance;
27
28
	public $status;
29
30
	public $eci;
31
32
	public $amount;
33
34
	public $currency;
35
36
	public $pm;
37
38
	public $brand;
39
40
	/**
41
	 * Constructs and initializes an Ogone DirectLink order response
42
	 */
43 6
	public function __construct() {
44
45 6
	}
46
}
47