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

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