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

tests/Query/Algolia/SearchQueryTest.php 2 locations

@@ 131-144 (lines=14) @@
128
    /**
129
     * @test
130
     */
131
    public function it_can_handle_numeric_filters()
132
    {
133
        $name = 'myFilter';
134
        $myValues = [1, 2, 3];
135
        $logicalOperator = SearchQuery::LOGICAL_OPERATOR_OR;
136
137
        $this->query->withNumericFilter($name, $myValues, $logicalOperator);
138
139
        $this->assertEquals($this->expectedResult(
140
            [
141
                'numericFilters' => ",({$name}={$myValues[0]},{$name}={$myValues[1]},{$name}={$myValues[2]})",
142
            ]
143
        ), $this->query->toArray());
144
    }
145
146
    /**
147
     * @test
@@ 149-162 (lines=14) @@
146
    /**
147
     * @test
148
     */
149
    public function it_can_handle_numeric_filters_with_an_and_relation()
150
    {
151
        $name = 'myFilter';
152
        $myValues = [1, 2, 3];
153
        $logicalOperator = SearchQuery::LOGICAL_OPERATOR_AND;
154
155
        $this->query->withNumericFilter($name, $myValues, $logicalOperator);
156
157
        $this->assertEquals($this->expectedResult(
158
            [
159
                'numericFilters' => ",{$name}={$myValues[0]},{$name}={$myValues[1]},{$name}={$myValues[2]}",
160
            ]
161
        ), $this->query->toArray());
162
    }
163
164
    /**
165
     * @test