GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

UserDetails::getLastName()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace zaporylie\Vipps\Model\Payment;
4
5
use JMS\Serializer\Annotation as Serializer;
6
7
/**
8
 * Class CustomerInfo
9
 *
10
 * @package Vipps\Model\Payment
11
 */
12
class UserDetails
13
{
14
15
  /**
16
   * @var string
17
   * @Serializer\Type("string")
18
   */
19
    protected $bankIdVerified;
20
21
  /**
22
   * @var string
23
   * @Serializer\Type("string")
24
   */
25
    protected $dateOfBirth;
26
27
  /**
28
   * @var string
29
   * @Serializer\Type("string")
30
   */
31
    protected $email;
32
33
  /**
34
   * @var string
35
   * @Serializer\Type("string")
36
   */
37
    protected $firstName;
38
39
  /**
40
   * @var string
41
   * @Serializer\Type("string")
42
   */
43
    protected $lastName;
44
45
  /**
46
   * @var string
47
   * @Serializer\Type("string")
48
   */
49
    protected $mobileNumber;
50
51
  /**
52
   * @var string
53
   * @Serializer\Type("string")
54
   */
55
    protected $ssn;
56
57
  /**
58
   * @var string
59
   * @Serializer\Type("string")
60
   */
61
    protected $userId;
62
63
    /**
64
     * @return string
65
     */
66
    public function getBankIdVerified()
67
    {
68
        return $this->bankIdVerified;
69
    }
70
71
    /**
72
     * @return string
73
     */
74
    public function getDateOfBirth()
75
    {
76
        return $this->dateOfBirth;
77
    }
78
79
    /**
80
     * @return string
81
     */
82
    public function getEmail()
83
    {
84
        return $this->email;
85
    }
86
87
    /**
88
     * @return string
89
     */
90
    public function getFirstName()
91
    {
92
        return $this->firstName;
93
    }
94
95
    /**
96
     * @return string
97
     */
98
    public function getLastName()
99
    {
100
        return $this->lastName;
101
    }
102
103
    /**
104
     * Gets mobileNumber value.
105
     *
106
     * @return string
107
     */
108
    public function getMobileNumber()
109
    {
110
        return $this->mobileNumber;
111
    }
112
113
    /**
114
     * @return string
115
     */
116
    public function getSsn()
117
    {
118
        return $this->ssn;
119
    }
120
121
    /**
122
     * @return string
123
     */
124
    public function getUserId()
125
    {
126
        return $this->userId;
127
    }
128
}
129