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

src/Wrapper/HeaderFooterWrapper.php 3 locations

@@ 224-228 (lines=5) @@
221
        }
222
223
        switch ($this->alignmentParameters['type']) {
224
            case self::ALIGNMENT_LEFT:
225
                if (strpos($this->parameters['value'][self::ALIGNMENT_LEFT], '&G') === false) {
226
                    $this->parameters['value'][self::ALIGNMENT_LEFT] .= $value;
227
                }
228
                break;
229
            case self::ALIGNMENT_CENTER:
230
                if (strpos($this->parameters['value'][self::ALIGNMENT_CENTER], '&G') === false) {
231
                    $this->parameters['value'][self::ALIGNMENT_CENTER] .= $value;
@@ 229-233 (lines=5) @@
226
                    $this->parameters['value'][self::ALIGNMENT_LEFT] .= $value;
227
                }
228
                break;
229
            case self::ALIGNMENT_CENTER:
230
                if (strpos($this->parameters['value'][self::ALIGNMENT_CENTER], '&G') === false) {
231
                    $this->parameters['value'][self::ALIGNMENT_CENTER] .= $value;
232
                }
233
                break;
234
            case self::ALIGNMENT_RIGHT:
235
                if (strpos($this->parameters['value'][self::ALIGNMENT_RIGHT], '&G') === false) {
236
                    $this->parameters['value'][self::ALIGNMENT_RIGHT] .= $value;
@@ 234-238 (lines=5) @@
231
                    $this->parameters['value'][self::ALIGNMENT_CENTER] .= $value;
232
                }
233
                break;
234
            case self::ALIGNMENT_RIGHT:
235
                if (strpos($this->parameters['value'][self::ALIGNMENT_RIGHT], '&G') === false) {
236
                    $this->parameters['value'][self::ALIGNMENT_RIGHT] .= $value;
237
                }
238
                break;
239
        }
240
241
        $this->alignmentParameters = [];