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.

Payment::setPurpose()   A
last analyzed

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 LPTracker\models;
4
5
use LPTracker\exceptions\LPTrackerSDKException;
6
7
class Payment extends Model
8
{
9
    /**
10
     * @var string
11
     */
12
    protected $category;
13
14
    /**
15
     * @var string
16
     */
17
    protected $purpose;
18
19
    /**
20
     * @var float
21
     */
22
    protected $sum;
23
24 View Code Duplication
    public function __construct(array $paymentData = [])
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
25
    {
26
        if (!empty($paymentData['category'])) {
27
            $this->category = $paymentData['category'];
28
        }
29
        if (!empty($paymentData['purpose'])) {
30
            $this->purpose = $paymentData['purpose'];
31
        }
32
        if (!empty($paymentData['sum'])) {
33
            $this->sum = $paymentData['sum'];
34
        }
35
    }
36
37
    /**
38
     * @return array
39
     */
40 View Code Duplication
    public function toArray()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
41
    {
42
        $result = [];
43
        if (!empty($this->category)) {
44
            $result['category'] = $this->getCategory();
45
        }
46
        if (!empty($this->purpose)) {
47
            $result['purpose'] = $this->getPurpose();
48
        }
49
        if (!empty($this->sum)) {
50
            $result['sum'] = $this->getSum();
51
        }
52
        return $result;
53
    }
54
55
    /**
56
     * @return bool
57
     * @throws LPTrackerSDKException
58
     */
59
    public function validate()
60
    {
61
        if (empty($this->category)) {
62
            throw new LPTrackerSDKException('Payment category is required');
63
        }
64
65
        if (empty($this->purpose)) {
66
            throw new LPTrackerSDKException('Payment purpose is required');
67
        }
68
69
        if (!isset($this->sum)) {
70
            throw new LPTrackerSDKException('Payment sum is required');
71
        }
72
73
        return true;
74
    }
75
76
    /**
77
     * @return string
78
     */
79
    public function getCategory()
80
    {
81
        return $this->category;
82
    }
83
84
    /**
85
     * @param string $category
86
     * @return $this
87
     */
88
    public function setCategory($category)
89
    {
90
        $this->category = $category;
91
        return $this;
92
    }
93
94
    /**
95
     * @return string
96
     */
97
    public function getPurpose()
98
    {
99
        return $this->purpose;
100
    }
101
102
    /**
103
     * @param string $purpose
104
     * @return $this
105
     */
106
    public function setPurpose($purpose)
107
    {
108
        $this->purpose = $purpose;
109
        return $this;
110
    }
111
112
    /**
113
     * @return float
114
     */
115
    public function getSum()
116
    {
117
        return $this->sum;
118
    }
119
120
    /**
121
     * @param float $sum
122
     * @return $this
123
     */
124
    public function setSum($sum)
125
    {
126
        $this->sum = $sum;
127
        return $this;
128
    }
129
}
130