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

Source/Repository.php 2 locations

@@ 68-75 (lines=8) @@
65
                $this->newMethod(__FUNCTION__, [$values]));
66
    }
67
68
    public function addRange($values)
69
    {
70
        if (!Utilities::isIterable($values)) {
71
            throw PinqException::invalidIterable(__METHOD__, $values);
72
        }
73
74
        $this->executeQuery($this->newMethod(__FUNCTION__, [$values]));
75
    }
76
77
    public function apply(callable $function)
78
    {
@@ 87-94 (lines=8) @@
84
        $this->executeQuery($this->newMethod(__FUNCTION__, [$value]));
85
    }
86
87
    public function removeRange($values)
88
    {
89
        if (!Utilities::isIterable($values)) {
90
            throw PinqException::invalidIterable(__METHOD__, $values);
91
        }
92
93
        $this->executeQuery($this->newMethod(__FUNCTION__, [$values]));
94
    }
95
96
    public function removeWhere(callable $predicate)
97
    {