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

tests/spec/CollectionSpec.php 4 locations

@@ 451-462 (lines=12) @@
448
            ->shouldReturn(true);
449
    }
450
451
    function it_can_check_if_it_contains_a_value()
452
    {
453
        $this->beConstructedWith([1, 3, 3, 2,]);
454
455
        $this
456
            ->contains(3)
457
            ->shouldReturn(true);
458
459
        $this
460
            ->contains(true)
461
            ->shouldReturn(false);
462
    }
463
464
    function it_can_reverse()
465
    {
@@ 1104-1110 (lines=7) @@
1101
        $this->intersect([1], [3])->values()->toArray()->shouldReturn([1, 3]);
1102
    }
1103
1104
    function it_can_check_if_size_is_exactly_n()
1105
    {
1106
        $this->beConstructedWith([1, 2]);
1107
        $this->sizeIs(2)->shouldReturn(true);
1108
        $this->sizeIs(3)->shouldReturn(false);
1109
        $this->sizeIs(0)->shouldReturn(false);
1110
    }
1111
1112
    function it_can_check_if_size_is_less_than_n()
1113
    {
@@ 1112-1118 (lines=7) @@
1109
        $this->sizeIs(0)->shouldReturn(false);
1110
    }
1111
1112
    function it_can_check_if_size_is_less_than_n()
1113
    {
1114
        $this->beConstructedWith([1, 2]);
1115
        $this->sizeIsLessThan(0)->shouldReturn(false);
1116
        $this->sizeIsLessThan(2)->shouldReturn(false);
1117
        $this->sizeIsLessThan(3)->shouldReturn(true);
1118
    }
1119
1120
    function it_can_check_if_size_is_greater_than_n()
1121
    {
@@ 1120-1126 (lines=7) @@
1117
        $this->sizeIsLessThan(3)->shouldReturn(true);
1118
    }
1119
1120
    function it_can_check_if_size_is_greater_than_n()
1121
    {
1122
        $this->beConstructedWith([1, 2]);
1123
        $this->sizeIsGreaterThan(2)->shouldReturn(false);
1124
        $this->sizeIsGreaterThan(1)->shouldReturn(true);
1125
        $this->sizeIsGreaterThan(0)->shouldReturn(true);
1126
    }
1127
1128
    function it_can_check_if_size_is_between_n_and_m()
1129
    {