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.

ExpressCheckOutPaymentRequest::getErrorInfo()   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 zaporylie\Vipps\Model\FromStringInterface;
6
use zaporylie\Vipps\Model\FromStringTrait;
7
use zaporylie\Vipps\Model\ToStringInterface;
8
use zaporylie\Vipps\Model\ToStringTrait;
9
use zaporylie\Vipps\Model\SupportsSerializationInterface;
10
use JMS\Serializer\Annotation as Serializer;
11
12
class ExpressCheckOutPaymentRequest implements FromStringInterface, ToStringInterface, SupportsSerializationInterface
13
{
14
    use FromStringTrait;
15
    use PaymentSerializationTrait;
16
    use ToStringTrait;
17
18
    /**
19
     * @var string
20
     * @Serializer\Type("string")
21
     */
22
    protected $merchantSerialNumber;
23
24
    /**
25
     * @var string
26
     * @Serializer\Type("string")
27
     */
28
    protected $orderId;
29
30
    /**
31
     * @var \zaporylie\Vipps\Model\Payment\CallbackTransactionInfoStatus
32
     * @Serializer\Type("zaporylie\Vipps\Model\Payment\CallbackTransactionInfoStatus")
33
     */
34
    protected $transactionInfo;
35
36
    /**
37
     * @var \zaporylie\Vipps\Model\Payment\ShippingDetailsRequest
38
     * @Serializer\Type("zaporylie\Vipps\Model\Payment\ShippingDetailsRequest")
39
     */
40
    protected $shippingDetails;
41
42
    /**
43
     * @var \zaporylie\Vipps\Model\Payment\UserDetails
44
     * @Serializer\Type("zaporylie\Vipps\Model\Payment\UserDetails")
45
     */
46
    protected $userDetails;
47
48
    /**
49
     * @var \zaporylie\Vipps\Model\Payment\CallbackErrorInfo
50
     * @Serializer\Type("zaporylie\Vipps\Model\Payment\CallbackErrorInfo")
51
     */
52
    protected $errorInfo;
53
54
    /**
55
     * @return string
56
     */
57
    public function getMerchantSerialNumber()
58
    {
59
        return $this->merchantSerialNumber;
60
    }
61
62
    /**
63
     * @return string
64
     */
65
    public function getOrderId()
66
    {
67
        return $this->orderId;
68
    }
69
70
    /**
71
     * @return \zaporylie\Vipps\Model\Payment\ShippingDetailsRequest
72
     */
73
    public function getShippingDetails()
74
    {
75
        return $this->shippingDetails;
76
    }
77
78
    /**
79
     * @return \zaporylie\Vipps\Model\Payment\CallbackTransactionInfoStatus
80
     */
81
    public function getTransactionInfo()
82
    {
83
        return $this->transactionInfo;
84
    }
85
86
    /**
87
     * @return \zaporylie\Vipps\Model\Payment\UserDetails
88
     */
89
    public function getUserDetails()
90
    {
91
        return $this->userDetails;
92
    }
93
94
    /**
95
     * @return \zaporylie\Vipps\Model\Payment\CallbackErrorInfo
96
     */
97
    public function getErrorInfo()
98
    {
99
        return $this->errorInfo;
100
    }
101
}
102