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

@@ 234-247 (lines=14) @@
231
        );
232
    }
233
234
    public function testDeleteTotpSecret()
235
    {
236
        $this->assertTrue(
237
            $this->makeRequest(
238
                ['vpn-admin-portal', 'bbccdd'],
239
                'POST',
240
                'delete_totp_secret',
241
                [],
242
                [
243
                    'user_id' => 'bar',
244
                ]
245
            )
246
        );
247
    }
248
249
    public function testSetVootToken()
250
    {
@@ 277-290 (lines=14) @@
274
        );
275
    }
276
277
    public function testDeleteVootToken()
278
    {
279
        $this->assertTrue(
280
            $this->makeRequest(
281
                ['vpn-admin-portal', 'bbccdd'],
282
                'POST',
283
                'delete_voot_token',
284
                [],
285
                [
286
                    'user_id' => 'bar',
287
                ]
288
            )
289
        );
290
    }
291
292
    public function testDisableUser()
293
    {
@@ 292-305 (lines=14) @@
289
        );
290
    }
291
292
    public function testDisableUser()
293
    {
294
        $this->assertTrue(
295
            $this->makeRequest(
296
                ['vpn-admin-portal', 'bbccdd'],
297
                'POST',
298
                'disable_user',
299
                [],
300
                [
301
                    'user_id' => 'foo',
302
                ]
303
            )
304
        );
305
    }
306
307
    public function testEnableUser()
308
    {
@@ 307-320 (lines=14) @@
304
        );
305
    }
306
307
    public function testEnableUser()
308
    {
309
        $this->assertTrue(
310
            $this->makeRequest(
311
                ['vpn-admin-portal', 'bbccdd'],
312
                'POST',
313
                'enable_user',
314
                [],
315
                [
316
                    'user_id' => 'bar',
317
                ]
318
            )
319
        );
320
    }
321
322
    public function testDeleteUser()
323
    {
@@ 322-335 (lines=14) @@
319
        );
320
    }
321
322
    public function testDeleteUser()
323
    {
324
        $this->assertTrue(
325
            $this->makeRequest(
326
                ['vpn-admin-portal', 'bbccdd'],
327
                'POST',
328
                'delete_user',
329
                [],
330
                [
331
                    'user_id' => 'foo',
332
                ]
333
            )
334
        );
335
    }
336
337
    public function testUserGroups()
338
    {