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/Manipulations.php 2 locations

@@ 324-331 (lines=8) @@
321
     *
322
     * @throws InvalidManipulation
323
     */
324
    public function blur(int $blur)
325
    {
326
        if ($blur < 0 || $blur > 100) {
327
            throw InvalidManipulation::valueNotInRange('blur', $blur, 0, 100);
328
        }
329
330
        return $this->addManipulation('blur', $blur);
331
    }
332
333
    /**
334
     * @param int $pixelate A value between 0 and 1000
@@ 408-415 (lines=8) @@
405
     *
406
     * @throws InvalidManipulation
407
     */
408
    public function quality(int $quality)
409
    {
410
        if ($quality < 0 || $quality > 100) {
411
            throw InvalidManipulation::valueNotInRange('quality', $quality, 0, 100);
412
        }
413
414
        return $this->addManipulation('quality', $quality);
415
    }
416
417
    /**
418
     * @param string $format