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

@@ 157-170 (lines=14) @@
154
        );
155
    }
156
157
    public function testDeleteTotpSecret()
158
    {
159
        $this->assertTrue(
160
            $this->makeRequest(
161
                ['vpn-admin-portal', 'bbccdd'],
162
                'POST',
163
                'delete_totp_secret',
164
                [],
165
                [
166
                    'user_id' => 'bar',
167
                ]
168
            )
169
        );
170
    }
171
172
    public function testSetVootToken()
173
    {
@@ 188-201 (lines=14) @@
185
        );
186
    }
187
188
    public function testDeleteVootToken()
189
    {
190
        $this->assertTrue(
191
            $this->makeRequest(
192
                ['vpn-admin-portal', 'bbccdd'],
193
                'POST',
194
                'delete_voot_token',
195
                [],
196
                [
197
                    'user_id' => 'bar',
198
                ]
199
            )
200
        );
201
    }
202
203
    public function testDisableUser()
204
    {
@@ 203-216 (lines=14) @@
200
        );
201
    }
202
203
    public function testDisableUser()
204
    {
205
        $this->assertTrue(
206
            $this->makeRequest(
207
                ['vpn-admin-portal', 'bbccdd'],
208
                'POST',
209
                'disable_user',
210
                [],
211
                [
212
                    'user_id' => 'foo',
213
                ]
214
            )
215
        );
216
    }
217
218
    public function testEnableUser()
219
    {
@@ 218-231 (lines=14) @@
215
        );
216
    }
217
218
    public function testEnableUser()
219
    {
220
        $this->assertTrue(
221
            $this->makeRequest(
222
                ['vpn-admin-portal', 'bbccdd'],
223
                'POST',
224
                'enable_user',
225
                [],
226
                [
227
                    'user_id' => 'bar',
228
                ]
229
            )
230
        );
231
    }
232
233
    public function testDeleteUser()
234
    {
@@ 233-246 (lines=14) @@
230
        );
231
    }
232
233
    public function testDeleteUser()
234
    {
235
        $this->assertTrue(
236
            $this->makeRequest(
237
                ['vpn-admin-portal', 'bbccdd'],
238
                'POST',
239
                'delete_user',
240
                [],
241
                [
242
                    'user_id' => 'foo',
243
                ]
244
            )
245
        );
246
    }
247
248
    public function testUserGroups()
249
    {