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

src/Task/ShellTask.php 2 locations

@@ 113-119 (lines=7) @@
110
            if ($option == 'arguments') {
111
                $arguments = array_merge($arguments, $value);
112
            } elseif ($option == 'options') {
113
                foreach ($value as $k => $v) {
114
                    if (is_numeric($k)) {
115
                        $options[$v] = true;
116
                    } else {
117
                        $options[$k] = $v;
118
                    }
119
                }
120
            } elseif ($option == 'optArg') {
121
                foreach ($value as $k => $v) {
122
                    if (is_numeric($k)) {
@@ 121-127 (lines=7) @@
118
                    }
119
                }
120
            } elseif ($option == 'optArg') {
121
                foreach ($value as $k => $v) {
122
                    if (is_numeric($k)) {
123
                        $arguments[] = $v;
124
                    } else {
125
                        $options[$k] = $v;
126
                    }
127
                }
128
            }
129
            parent::offsetSet('arguments', $arguments);
130
            parent::offsetSet('options', $options);