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

@@ 223-236 (lines=14) @@
220
        );
221
    }
222
223
    public function testDeleteTotpSecret()
224
    {
225
        $this->assertTrue(
226
            $this->makeRequest(
227
                ['vpn-admin-portal', 'bbccdd'],
228
                'POST',
229
                'delete_totp_secret',
230
                [],
231
                [
232
                    'user_id' => 'bar',
233
                ]
234
            )
235
        );
236
    }
237
238
    public function testSetVootToken()
239
    {
@@ 254-267 (lines=14) @@
251
        );
252
    }
253
254
    public function testDeleteVootToken()
255
    {
256
        $this->assertTrue(
257
            $this->makeRequest(
258
                ['vpn-admin-portal', 'bbccdd'],
259
                'POST',
260
                'delete_voot_token',
261
                [],
262
                [
263
                    'user_id' => 'bar',
264
                ]
265
            )
266
        );
267
    }
268
269
    public function testDisableUser()
270
    {
@@ 269-282 (lines=14) @@
266
        );
267
    }
268
269
    public function testDisableUser()
270
    {
271
        $this->assertTrue(
272
            $this->makeRequest(
273
                ['vpn-admin-portal', 'bbccdd'],
274
                'POST',
275
                'disable_user',
276
                [],
277
                [
278
                    'user_id' => 'foo',
279
                ]
280
            )
281
        );
282
    }
283
284
    public function testEnableUser()
285
    {
@@ 284-297 (lines=14) @@
281
        );
282
    }
283
284
    public function testEnableUser()
285
    {
286
        $this->assertTrue(
287
            $this->makeRequest(
288
                ['vpn-admin-portal', 'bbccdd'],
289
                'POST',
290
                'enable_user',
291
                [],
292
                [
293
                    'user_id' => 'bar',
294
                ]
295
            )
296
        );
297
    }
298
299
    public function testDeleteUser()
300
    {
@@ 299-312 (lines=14) @@
296
        );
297
    }
298
299
    public function testDeleteUser()
300
    {
301
        $this->assertTrue(
302
            $this->makeRequest(
303
                ['vpn-admin-portal', 'bbccdd'],
304
                'POST',
305
                'delete_user',
306
                [],
307
                [
308
                    'user_id' => 'foo',
309
                ]
310
            )
311
        );
312
    }
313
314
    public function testUserGroups()
315
    {