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

src/Messenger.php 2 locations

@@ 154-161 (lines=8) @@
151
    /**
152
     * @param string $line
153
     */
154
    protected function write($line)
155
    {
156
        if (isset($this->options['write'])) {
157
            $streamName = $this->options['write'];
158
            $this->$streamName->write($line);
159
            unset($streamName);
160
        }
161
    }
162
163
    /**
164
     * @param string $line
@@ 166-173 (lines=8) @@
163
    /**
164
     * @param string $line
165
     */
166
    protected function writeErr($line)
167
    {
168
        if (isset($this->options['write_err'])) {
169
            $streamName = $this->options['write_err'];
170
            $this->$streamName->write($line);
171
            unset($streamName);
172
        }
173
    }
174
175
    /**
176
     * @param Message $message