Customer   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 31
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 14
c 1
b 0
f 0
dl 0
loc 31
ccs 1
cts 1
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 1 1
1
<?php
2
3
namespace Pronamic\WordPress\Pay\Gateways\MultiSafepay;
4
5
/**
6
 * Title: MultiSafepay Connect customer
7
 * Description:
8
 * Copyright: 2005-2021 Pronamic
9
 * Company: Pronamic
10
 *
11
 * @author  Remco Tolsma
12
 * @version 2.0.2
13
 * @since   1.0.0
14
 */
15
class Customer {
16
	public $locale;
17
18
	public $ip_address;
19
20
	public $forwarded_ip;
21
22
	public $first_name;
23
24
	public $last_name;
25
26
	public $address_1;
27
28
	public $address_2;
29
30
	public $house_number;
31
32
	public $zip_code;
33
34
	public $city;
35
36
	public $country;
37
38
	public $phone;
39
40
	public $email;
41
42
	/**
43
	 * Constructs and initialize an MultiSafepay Connect customer object
44
	 */
45 2
	public function __construct() {
46
47 2
	}
48
}
49