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 = 14-14 lines in 5 locations

tests/Api/UsersModuleTest.php 5 locations

@@ 212-225 (lines=14) @@
209
        );
210
    }
211
212
    public function testDeleteTotpSecret()
213
    {
214
        $this->assertTrue(
215
            $this->makeRequest(
216
                ['vpn-admin-portal', 'bbccdd'],
217
                'POST',
218
                'delete_totp_secret',
219
                [],
220
                [
221
                    'user_id' => 'bar',
222
                ]
223
            )
224
        );
225
    }
226
227
    public function testSetVootToken()
228
    {
@@ 243-256 (lines=14) @@
240
        );
241
    }
242
243
    public function testDeleteVootToken()
244
    {
245
        $this->assertTrue(
246
            $this->makeRequest(
247
                ['vpn-admin-portal', 'bbccdd'],
248
                'POST',
249
                'delete_voot_token',
250
                [],
251
                [
252
                    'user_id' => 'bar',
253
                ]
254
            )
255
        );
256
    }
257
258
    public function testDisableUser()
259
    {
@@ 258-271 (lines=14) @@
255
        );
256
    }
257
258
    public function testDisableUser()
259
    {
260
        $this->assertTrue(
261
            $this->makeRequest(
262
                ['vpn-admin-portal', 'bbccdd'],
263
                'POST',
264
                'disable_user',
265
                [],
266
                [
267
                    'user_id' => 'foo',
268
                ]
269
            )
270
        );
271
    }
272
273
    public function testEnableUser()
274
    {
@@ 273-286 (lines=14) @@
270
        );
271
    }
272
273
    public function testEnableUser()
274
    {
275
        $this->assertTrue(
276
            $this->makeRequest(
277
                ['vpn-admin-portal', 'bbccdd'],
278
                'POST',
279
                'enable_user',
280
                [],
281
                [
282
                    'user_id' => 'bar',
283
                ]
284
            )
285
        );
286
    }
287
288
    public function testDeleteUser()
289
    {
@@ 288-301 (lines=14) @@
285
        );
286
    }
287
288
    public function testDeleteUser()
289
    {
290
        $this->assertTrue(
291
            $this->makeRequest(
292
                ['vpn-admin-portal', 'bbccdd'],
293
                'POST',
294
                'delete_user',
295
                [],
296
                [
297
                    'user_id' => 'foo',
298
                ]
299
            )
300
        );
301
    }
302
303
    public function testUserGroups()
304
    {