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

src/PHPCoverFish/Common/CoverFishMessageError.php 2 locations

@@ 94-101 (lines=8) @@
91
92
                break;
93
94
            case self::PHPUNIT_REFLECTION_CLASS_NOT_DEFINED:
95
                $coverLine = sprintf('@covers %s', $coverMapping->getClassFQN());
96
                if (!$noAnsiColors) {
97
                    $coverLine  = Color::tplNormalColor('@covers ');
98
                    $coverLine .= Color::tplMarkFailure($coverMapping->getClassFQN());
99
                }
100
101
                break;
102
103
            case self::PHPUNIT_REFLECTION_NO_PUBLIC_METHODS_FOUND:
104
            case self::PHPUNIT_REFLECTION_NO_PROTECTED_METHODS_FOUND:
@@ 120-126 (lines=7) @@
117
118
                break;
119
120
            case self::PHPUNIT_VALIDATOR_MISSING_DEFAULT_COVER_CLASS_PROBLEM:
121
                $coverLine = sprintf('@covers %s', $coverMapping->getClass());
122
                if (!$noAnsiColors) {
123
                    $coverLine  = Color::tplNormalColor('@covers ');
124
                    $coverLine .= Color::tplMarkFailure($coverMapping->getClass());
125
                }
126
                break;
127
128
            case self::PHPUNIT_VALIDATOR_PROBLEM:
129
                break;