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.

Code Duplication    Length = 195-195 lines in 2 locations

src/Neta/Shopware/SDK/Entity/OrderAttribute.php 1 location

@@ 16-210 (lines=195) @@
13
/**
14
 * Class OrderAttribute.
15
 */
16
class OrderAttribute extends Base
17
{
18
    /**
19
     * @var int
20
     */
21
    protected $id;
22
    /**
23
     * @var int
24
     */
25
    protected $orderId;
26
    /**
27
     * @var string
28
     */
29
    protected $attribute1;
30
    /**
31
     * @var string
32
     */
33
    protected $attribute2;
34
    /**
35
     * @var string
36
     */
37
    protected $attribute3;
38
    /**
39
     * @var string
40
     */
41
    protected $attribute4;
42
    /**
43
     * @var string
44
     */
45
    protected $attribute5;
46
    /**
47
     * @var string
48
     */
49
    protected $attribute6;
50
51
    /**
52
     * @return int
53
     */
54
    public function getId()
55
    {
56
        return $this->id;
57
    }
58
59
    /**
60
     * @param int $id
61
     *
62
     * @return OrderAttribute
63
     */
64
    public function setId($id)
65
    {
66
        $this->id = $id;
67
68
        return $this;
69
    }
70
71
    /**
72
     * @return int
73
     */
74
    public function getOrderId()
75
    {
76
        return $this->orderId;
77
    }
78
79
    /**
80
     * @param int $orderId
81
     *
82
     * @return OrderAttribute
83
     */
84
    public function setOrderId($orderId)
85
    {
86
        $this->orderId = $orderId;
87
88
        return $this;
89
    }
90
91
    /**
92
     * @return string
93
     */
94
    public function getAttribute1()
95
    {
96
        return $this->attribute1;
97
    }
98
99
    /**
100
     * @param string $attribute1
101
     *
102
     * @return OrderAttribute
103
     */
104
    public function setAttribute1($attribute1)
105
    {
106
        $this->attribute1 = $attribute1;
107
108
        return $this;
109
    }
110
111
    /**
112
     * @return string
113
     */
114
    public function getAttribute2()
115
    {
116
        return $this->attribute2;
117
    }
118
119
    /**
120
     * @param string $attribute2
121
     *
122
     * @return OrderAttribute
123
     */
124
    public function setAttribute2($attribute2)
125
    {
126
        $this->attribute2 = $attribute2;
127
128
        return $this;
129
    }
130
131
    /**
132
     * @return string
133
     */
134
    public function getAttribute3()
135
    {
136
        return $this->attribute3;
137
    }
138
139
    /**
140
     * @param string $attribute3
141
     *
142
     * @return OrderAttribute
143
     */
144
    public function setAttribute3($attribute3)
145
    {
146
        $this->attribute3 = $attribute3;
147
148
        return $this;
149
    }
150
151
    /**
152
     * @return string
153
     */
154
    public function getAttribute4()
155
    {
156
        return $this->attribute4;
157
    }
158
159
    /**
160
     * @param string $attribute4
161
     *
162
     * @return OrderAttribute
163
     */
164
    public function setAttribute4($attribute4)
165
    {
166
        $this->attribute4 = $attribute4;
167
168
        return $this;
169
    }
170
171
    /**
172
     * @return string
173
     */
174
    public function getAttribute5()
175
    {
176
        return $this->attribute5;
177
    }
178
179
    /**
180
     * @param string $attribute5
181
     *
182
     * @return OrderAttribute
183
     */
184
    public function setAttribute5($attribute5)
185
    {
186
        $this->attribute5 = $attribute5;
187
188
        return $this;
189
    }
190
191
    /**
192
     * @return string
193
     */
194
    public function getAttribute6()
195
    {
196
        return $this->attribute6;
197
    }
198
199
    /**
200
     * @param string $attribute6
201
     *
202
     * @return OrderAttribute
203
     */
204
    public function setAttribute6($attribute6)
205
    {
206
        $this->attribute6 = $attribute6;
207
208
        return $this;
209
    }
210
}
211

src/Neta/Shopware/SDK/Entity/OrderDetailAttribute.php 1 location

@@ 16-210 (lines=195) @@
13
/**
14
 * Class OrderDetailAttribute.
15
 */
16
class OrderDetailAttribute extends Base
17
{
18
    /**
19
     * @var int
20
     */
21
    protected $id;
22
    /**
23
     * @var int
24
     */
25
    protected $orderDetailId;
26
    /**
27
     * @var string
28
     */
29
    protected $attribute1;
30
    /**
31
     * @var string
32
     */
33
    protected $attribute2;
34
    /**
35
     * @var string
36
     */
37
    protected $attribute3;
38
    /**
39
     * @var string
40
     */
41
    protected $attribute4;
42
    /**
43
     * @var string
44
     */
45
    protected $attribute5;
46
    /**
47
     * @var string
48
     */
49
    protected $attribute6;
50
51
    /**
52
     * @return int
53
     */
54
    public function getId()
55
    {
56
        return $this->id;
57
    }
58
59
    /**
60
     * @param int $id
61
     *
62
     * @return OrderDetailAttribute
63
     */
64
    public function setId($id)
65
    {
66
        $this->id = $id;
67
68
        return $this;
69
    }
70
71
    /**
72
     * @return int
73
     */
74
    public function getOrderDetailId()
75
    {
76
        return $this->orderDetailId;
77
    }
78
79
    /**
80
     * @param int $orderDetailId
81
     *
82
     * @return OrderDetailAttribute
83
     */
84
    public function setOrderDetailId($orderDetailId)
85
    {
86
        $this->orderDetailId = $orderDetailId;
87
88
        return $this;
89
    }
90
91
    /**
92
     * @return string
93
     */
94
    public function getAttribute1()
95
    {
96
        return $this->attribute1;
97
    }
98
99
    /**
100
     * @param string $attribute1
101
     *
102
     * @return OrderDetailAttribute
103
     */
104
    public function setAttribute1($attribute1)
105
    {
106
        $this->attribute1 = $attribute1;
107
108
        return $this;
109
    }
110
111
    /**
112
     * @return string
113
     */
114
    public function getAttribute2()
115
    {
116
        return $this->attribute2;
117
    }
118
119
    /**
120
     * @param string $attribute2
121
     *
122
     * @return OrderDetailAttribute
123
     */
124
    public function setAttribute2($attribute2)
125
    {
126
        $this->attribute2 = $attribute2;
127
128
        return $this;
129
    }
130
131
    /**
132
     * @return string
133
     */
134
    public function getAttribute3()
135
    {
136
        return $this->attribute3;
137
    }
138
139
    /**
140
     * @param string $attribute3
141
     *
142
     * @return OrderDetailAttribute
143
     */
144
    public function setAttribute3($attribute3)
145
    {
146
        $this->attribute3 = $attribute3;
147
148
        return $this;
149
    }
150
151
    /**
152
     * @return string
153
     */
154
    public function getAttribute4()
155
    {
156
        return $this->attribute4;
157
    }
158
159
    /**
160
     * @param string $attribute4
161
     *
162
     * @return OrderDetailAttribute
163
     */
164
    public function setAttribute4($attribute4)
165
    {
166
        $this->attribute4 = $attribute4;
167
168
        return $this;
169
    }
170
171
    /**
172
     * @return string
173
     */
174
    public function getAttribute5()
175
    {
176
        return $this->attribute5;
177
    }
178
179
    /**
180
     * @param string $attribute5
181
     *
182
     * @return OrderDetailAttribute
183
     */
184
    public function setAttribute5($attribute5)
185
    {
186
        $this->attribute5 = $attribute5;
187
188
        return $this;
189
    }
190
191
    /**
192
     * @return string
193
     */
194
    public function getAttribute6()
195
    {
196
        return $this->attribute6;
197
    }
198
199
    /**
200
     * @param string $attribute6
201
     *
202
     * @return OrderDetailAttribute
203
     */
204
    public function setAttribute6($attribute6)
205
    {
206
        $this->attribute6 = $attribute6;
207
208
        return $this;
209
    }
210
}
211