Completed
Push — master ( 482d51...e5d2c9 )
by
unknown
11s
created

CustomerProfileInfoExType   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 32
rs 10
c 1
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getProfileType() 0 4 1
A setProfileType() 0 5 1
1
<?php
2
3
namespace net\authorize\api\contract\v1;
4
5
/**
6
 * Class representing CustomerProfileInfoExType
7
 *
8
 * 
9
 * XSD Type: customerProfileInfoExType
10
 */
11
class CustomerProfileInfoExType extends CustomerProfileExType
12
{
13
14
    /**
15
     * @property string $profileType
16
     */
17
    private $profileType = null;
18
19
    /**
20
     * Gets as profileType
21
     *
22
     * @return string
23
     */
24
    public function getProfileType()
25
    {
26
        return $this->profileType;
27
    }
28
29
    /**
30
     * Sets a new profileType
31
     *
32
     * @param string $profileType
33
     * @return self
34
     */
35
    public function setProfileType($profileType)
36
    {
37
        $this->profileType = $profileType;
38
        return $this;
39
    }
40
41
42
}
43
44