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

src/Stream.php 2 locations

@@ 404-414 (lines=11) @@
401
    /**
402
     * {@inheritdoc}
403
     */
404
    public function append(StreamInterface $stream): StreamInterface
405
    {
406
        $this->validate($stream);
407
408
        $self = clone $this;
409
        $self->values = $this->values->append(
410
            new Sequence(...$stream)
411
        );
412
413
        return $self;
414
    }
415
416
    /**
417
     * {@inheritdoc}
@@ 419-429 (lines=11) @@
416
    /**
417
     * {@inheritdoc}
418
     */
419
    public function intersect(StreamInterface $stream): StreamInterface
420
    {
421
        $this->validate($stream);
422
423
        $self = clone $this;
424
        $self->values = $this->values->intersect(
425
            new Sequence(...$stream)
426
        );
427
428
        return $self;
429
    }
430
431
    /**
432
     * {@inheritdoc}