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

@@ 293-300 (lines=8) @@
290
     *
291
     * @throws InvalidManipulation
292
     */
293
    public function blur(int $blur)
294
    {
295
        if ($blur < 0 || $blur > 100) {
296
            throw InvalidManipulation::valueNotInRange('blur', $blur, 0, 100);
297
        }
298
299
        return $this->addManipulation('blur', $blur);
300
    }
301
302
    /**
303
     * @param int $pixelate A value between 0 and 1000
@@ 377-384 (lines=8) @@
374
     *
375
     * @throws InvalidManipulation
376
     */
377
    public function quality(int $quality)
378
    {
379
        if ($quality < 0 || $quality > 100) {
380
            throw InvalidManipulation::valueNotInRange('quality', $quality, 0, 100);
381
        }
382
383
        return $this->addManipulation('quality', $quality);
384
    }
385
386
    /**
387
     * @param string $format