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

src/Controller.php 3 locations

@@ 90-93 (lines=4) @@
87
                    return $this->handleGet($request);
88
                case 'POST':
89
                    return $this->handlePost($request);
90
                case 'PUT':
91
                    $tokenInfo = $this->auth['bearer']->requireAuth($request);
92
93
                    return $this->apiModule->put($request, $tokenInfo);
94
                case 'DELETE':
95
                    $tokenInfo = $this->auth['bearer']->requireAuth($request);
96
@@ 94-97 (lines=4) @@
91
                    $tokenInfo = $this->auth['bearer']->requireAuth($request);
92
93
                    return $this->apiModule->put($request, $tokenInfo);
94
                case 'DELETE':
95
                    $tokenInfo = $this->auth['bearer']->requireAuth($request);
96
97
                    return $this->apiModule->delete($request, $tokenInfo);
98
                case 'OPTIONS':
99
                    return $this->apiModule->options($request);
100
                case 'HEAD':
@@ 100-103 (lines=4) @@
97
                    return $this->apiModule->delete($request, $tokenInfo);
98
                case 'OPTIONS':
99
                    return $this->apiModule->options($request);
100
                case 'HEAD':
101
                    $tokenInfo = $this->auth['bearer']->optionalAuth($request);
102
103
                    return $this->apiModule->head($request, $tokenInfo);
104
                default:
105
                    throw new HttpException('method not allowed', 405);
106
           }