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

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