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 = 3-3 lines in 7 locations

myth/Route.php 7 locations

@@ 288-290 (lines=3) @@
285
     */
286
    public function get($from, $to, $options = [])
287
    {
288
        if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'GET') {
289
            $this->create($from, $to, $options);
290
        }
291
    }
292
293
    //--------------------------------------------------------------------
@@ 304-306 (lines=3) @@
301
     */
302
    public function post($from, $to, $options = [])
303
    {
304
        if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'POST') {
305
            $this->create($from, $to, $options);
306
        }
307
    }
308
309
    //--------------------------------------------------------------------
@@ 320-322 (lines=3) @@
317
     */
318
    public function put($from, $to, $options = [])
319
    {
320
        if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'PUT') {
321
            $this->create($from, $to, $options);
322
        }
323
    }
324
325
    //--------------------------------------------------------------------
@@ 336-338 (lines=3) @@
333
     */
334
    public function delete($from, $to, $options = [])
335
    {
336
        if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'DELETE') {
337
            $this->create($from, $to, $options);
338
        }
339
    }
340
341
    //--------------------------------------------------------------------
@@ 352-354 (lines=3) @@
349
     */
350
    public function head($from, $to, $options = [])
351
    {
352
        if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'HEAD') {
353
            $this->create($from, $to, $options);
354
        }
355
    }
356
357
    //--------------------------------------------------------------------
@@ 368-370 (lines=3) @@
365
     */
366
    public function patch($from, $to, $options = [])
367
    {
368
        if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'PATCH') {
369
            $this->create($from, $to, $options);
370
        }
371
    }
372
373
    //--------------------------------------------------------------------
@@ 384-386 (lines=3) @@
381
     */
382
    public function options($from, $to, $options = [])
383
    {
384
        if (isset($_SERVER['REQUEST_METHOD']) && $_SERVER['REQUEST_METHOD'] == 'OPTIONS') {
385
            $this->create($from, $to, $options);
386
        }
387
    }
388
389
    //--------------------------------------------------------------------