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-7 lines in 2 locations

applications/workspace/src/BitPrepared/Bundle/D1b0Workspace/Controller/V1/SecurityController.php 1 location

@@ 56-62 (lines=7) @@
53
                        "clientId"=>$user->id
54
                ];
55
                $response = JsonResponse::create($res, 200, $headers)->setSharedMaxAge(300);
56
            }else {
57
                $headers = [];
58
                $res = [
59
                        "errore"=>"sbagliato password o user" //TODO roba
60
                ];
61
                $response = JsonResponse::create($res, 401, $headers)->setSharedMaxAge(300);
62
            }
63
        }else {
64
            //Facebook Redirect
65
        }

applications/workspace/src/BitPrepared/Bundle/D1b0Workspace/Controller/V1/WorkspaceController.php 1 location

@@ 280-283 (lines=4) @@
277
                $headers = [];
278
                $response = JsonResponse::create(["id"=>$wp_id], 200, $headers)->setSharedMaxAge(300);
279
280
            }else {
281
                $headers = [];
282
                $response = JsonResponse::create(["message"=>"Key no more valid"], 498, $headers)->setSharedMaxAge(300);
283
            }
284
        }
285
286
        return $response;