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

src/PHPCoverFish/Validator/Base/BaseCoverFishValidator.php 3 locations

@@ 146-157 (lines=12) @@
143
     *
144
     * @return CoverFishResult
145
     */
146
    public function validateClassFQNMapping(CoverFishMapping $coverMapping, CoverFishResult $coverFishResult)
147
    {
148
        $classReflectionResult = $this->validateReflectionClass($coverMapping->getClassFQN());
149
        if ($classReflectionResult instanceof CoverFishMessageError) {
150
            $coverFishResult = $this->setValidationError(
151
                $coverFishResult,
152
                $classReflectionResult->getMessageCode()
153
            );
154
        }
155
156
        return $coverFishResult;
157
    }
158
159
    /**
160
     * @param CoverFishMapping $coverMapping
@@ 165-176 (lines=12) @@
162
     *
163
     * @return CoverFishResult
164
     */
165
    public function validateClassAccessorVisibility(CoverFishMapping $coverMapping, CoverFishResult $coverFishResult)
166
    {
167
        $methodReflectionResult = $this->validateReflectionClassForAccessorVisibility($coverMapping->getClassFQN(), $coverMapping->getAccessor());
168
        if ($methodReflectionResult instanceof CoverFishMessageError) {
169
            $coverFishResult = $this->setValidationError(
170
                $coverFishResult,
171
                $methodReflectionResult->getMessageCode()
172
            );
173
        }
174
175
        return $coverFishResult;
176
    }
177
178
    /**
179
     * @param CoverFishMapping $coverMapping
@@ 184-195 (lines=12) @@
181
     *
182
     * @return CoverFishResult
183
     */
184
    public function validateClassMethod(CoverFishMapping $coverMapping, CoverFishResult $coverFishResult)
185
    {
186
        $methodReflectionResult = $this->validateReflectionMethod($coverMapping->getClassFQN(), $coverMapping->getMethod());
187
        if ($methodReflectionResult instanceof CoverFishMessageError) {
188
            $coverFishResult = $this->setValidationError(
189
                $coverFishResult,
190
                $methodReflectionResult->getMessageCode()
191
            );
192
        }
193
194
        return $coverFishResult;
195
    }
196
197
    /**
198
     * @param CoverFishMapping $coverMapping