Customer::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
c 1
b 0
f 0
dl 0
loc 1
ccs 1
cts 1
cp 1
rs 10
cc 1
nc 1
nop 0
crap 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