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

routes/event.php 2 locations

@@ 33-36 (lines=4) @@
30
    }
31
32
    // marcar evento como no completado
33
    if ($event['is_manual'] && ($event['completed_date'] != null) && isset($_POST['unmark'])) {
34
        removeCompletedEvent($id, $user['id']);
35
        $app->redirect($app->urlFor('activities', array('id' => $pid)));
36
    }
37
38
    // marcar evento como completado
39
    if ($event['is_manual'] && ($event['completed_date'] == null) && isset($_POST['mark'])) {
@@ 39-42 (lines=4) @@
36
    }
37
38
    // marcar evento como completado
39
    if ($event['is_manual'] && ($event['completed_date'] == null) && isset($_POST['mark'])) {
40
        addCompletedEvent($id, $user['id']);
41
        $app->redirect($app->urlFor('activities', array('id' => $pid)));
42
    }
43
44
    // obtener carpeta
45
    $folder = getFolder($organization['id'], $event['folder_id']);