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
        }
64
        else {
65
            //Facebook Redirect

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

@@ 219-222 (lines=4) @@
216
                $headers = [];
217
                $response = JsonResponse::create(["id"=>$wp_id], 200, $headers)->setSharedMaxAge(300);
218
219
            }else{
220
                $headers = [];
221
                $response = JsonResponse::create(["message"=>"Key no more valid"], 498, $headers)->setSharedMaxAge(300);
222
            }
223
        }
224
225
        return $response;