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

routes/personal.php 2 locations

@@ 86-88 (lines=3) @@
83
        if (isset($_POST['displayname'])) {
84
            $local->set('display_name', $_POST['displayname']);
85
        }
86
        if (isset($_POST['description']) && (null != $_POST['description'])) {
87
            $local->set('description', $_POST['description']);
88
        }
89
        if (isset($_POST['firstname'])) {
90
            $local->set('first_name', $_POST['firstname']);
91
        }
@@ 114-116 (lines=3) @@
111
            if (isset($_POST['username'])) {
112
                $local->set('user_name', $_POST['username']);
113
            }
114
            if (isset($_POST['description'])) {
115
                $local->set('description', strlen($_POST['description']) > 0 ? $_POST['description'] : null);
116
            }
117
            // los flags de usuario activo y administrador local se grabarĂ¡n
118
            // luego si es un usuario nuevo
119
            if (($id != 0) && isset($_POST['active']) && isset($_POST['localadmin'])) {