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

src/Connection.php 2 locations

@@ 124-126 (lines=3) @@
121
        $cluster = Cassandra::cluster();
122
123
        // Check if the credentials are not already set in the options
124
        if (!isset($options['username']) && !empty($config['username'])) {
125
            $options['username'] = $config['username'];
126
        }
127
        if (!isset($options['password']) && !empty($config['password'])) {
128
            $options['password'] = $config['password'];
129
        }
@@ 127-129 (lines=3) @@
124
        if (!isset($options['username']) && !empty($config['username'])) {
125
            $options['username'] = $config['username'];
126
        }
127
        if (!isset($options['password']) && !empty($config['password'])) {
128
            $options['password'] = $config['password'];
129
        }
130
131
        // Authentication
132
        if (isset($options['username']) && isset($options['password'])) {