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

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayDeclarationSniff.php 3 locations

@@ 621-627 (lines=7) @@
618
                                 );
619
620
                        $fix = $phpcsFile->addFixableError($error, $value['value'], 'ValueNotAligned', $data);
621
                        if ($fix === true) {
622
                            if ($found === 0) {
623
                                $phpcsFile->fixer->addContent(($value['value'] - 1), str_repeat(' ', $expected));
624
                            } else {
625
                                $phpcsFile->fixer->replaceToken(($value['value'] - 1), str_repeat(' ', $expected));
626
                            }
627
                        }
628
                    }
629
                }//end if
630
@@ 720-726 (lines=7) @@
717
                            );
718
719
                $fix = $phpcsFile->addFixableError($error, $index['index'], 'KeyNotAligned', $data);
720
                if ($fix === true) {
721
                    if ($found === 0) {
722
                        $phpcsFile->fixer->addContent(($index['index'] - 1), str_repeat(' ', $expected));
723
                    } else {
724
                        $phpcsFile->fixer->replaceToken(($index['index'] - 1), str_repeat(' ', $expected));
725
                    }
726
                }
727
728
                continue;
729
            }
@@ 741-747 (lines=7) @@
738
                            );
739
740
                $fix = $phpcsFile->addFixableError($error, $index['arrow'], 'DoubleArrowNotAligned', $data);
741
                if ($fix === true) {
742
                    if ($found === 0) {
743
                        $phpcsFile->fixer->addContent(($index['arrow'] - 1), str_repeat(' ', $expected));
744
                    } else {
745
                        $phpcsFile->fixer->replaceToken(($index['arrow'] - 1), str_repeat(' ', $expected));
746
                    }
747
                }
748
749
                continue;
750
            }