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

@@ 414-424 (lines=11) @@
411
    /**
412
     * {@inheritdoc}
413
     */
414
    public function append(StreamInterface $stream): StreamInterface
415
    {
416
        $this->validate($stream);
417
418
        $self = clone $this;
419
        $self->values = $this->values->append(
420
            new Sequence(...$stream)
421
        );
422
423
        return $self;
424
    }
425
426
    /**
427
     * {@inheritdoc}
@@ 429-439 (lines=11) @@
426
    /**
427
     * {@inheritdoc}
428
     */
429
    public function intersect(StreamInterface $stream): StreamInterface
430
    {
431
        $this->validate($stream);
432
433
        $self = clone $this;
434
        $self->values = $this->values->intersect(
435
            new Sequence(...$stream)
436
        );
437
438
        return $self;
439
    }
440
441
    /**
442
     * {@inheritdoc}