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.
Completed
Pull Request — 1.x (#24)
by
unknown
07:55
created

MerchantInfo::setFallBack()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace zaporylie\Vipps\Model\Payment;
4
5
use JMS\Serializer\Annotation as Serializer;
6
7
/**
8
 * Class MerchantInfo
9
 *
10
 * @package Vipps\Model\Payment
11
 */
12
class MerchantInfo
13
{
14
15
    /**
16
     * @var string
17
     * @Serializer\Type("string")
18
     */
19
    protected $merchantSerialNumber;
20
21
    /**
22
     * @var string
23
     * @Serializer\Type("string")
24
     */
25
    protected $callbackPrefix;
26
27
    /**
28
     * @var string
29
     * @Serializer\Type("string")
30
     */
31
    protected $fallBack;
32
33
    /**
34
     * @var string
35
     * @Serializer\Type("bool")
36
     */
37
    protected $isApp = false;
38
39
    /**
40
     * Gets merchantSerialNumber value.
41
     *
42
     * @return string
43
     */
44
    public function getMerchantSerialNumber()
45
    {
46
        return $this->merchantSerialNumber;
47
    }
48
49
    /**
50
     * Sets merchantSerialNumber variable.
51
     *
52
     * @param string $merchantSerialNumber
53
     *
54
     * @return $this
55
     */
56
    public function setMerchantSerialNumber($merchantSerialNumber)
57
    {
58
        $this->merchantSerialNumber = $merchantSerialNumber;
59
        return $this;
60
    }
61
62
    /**
63
     * Gets callBack value.
64
     *
65
     * @return string
66
     */
67
    public function getCallBack()
68
    {
69
        return $this->callbackPrefix;
70
    }
71
72
    /**
73
     * Sets callbackPrefix variable.
74
     *
75
     * @param string $callBack
76
     *
77
     * @return $this
78
     */
79
    public function setCallBack($callBack)
80
    {
81
        $this->callbackPrefix = $callBack;
82
        return $this;
83
    }
84
85
    /**
86
     * Gets fallBack value.
87
     *
88
     * @return string
89
     */
90
    public function getFallBack()
91
    {
92
        return $this->fallBack;
93
    }
94
95
    /**
96
     * Sets fallBack variable.
97
     *
98
     * @param string $fallBack
99
     *
100
     * @return $this
101
     */
102
    public function setFallBack($fallBack)
103
    {
104
        $this->fallBack = $fallBack;
105
        return $this;
106
    }
107
}
108