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

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