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

application/extensions/DefaultTheme/widgets/FilterSets/Widget.php 2 locations

@@ 232-234 (lines=3) @@
229
                    }
230
                    foreach ($selections as $selection) {
231
                        if ($filterSet->is_range_slider) {
232
                            if ((int)$selection['value'] > $item['max']) {
233
                                $item['max'] = (int)$selection['value'];
234
                            }
235
                            if ((int)$selection['value'] < $item['min']) {
236
                                $item['min'] = (int)$selection['value'];
237
                            }
@@ 235-237 (lines=3) @@
232
                            if ((int)$selection['value'] > $item['max']) {
233
                                $item['max'] = (int)$selection['value'];
234
                            }
235
                            if ((int)$selection['value'] < $item['min']) {
236
                                $item['min'] = (int)$selection['value'];
237
                            }
238
                        } elseif($item['multiple']) {
239
                            $selectedPropertyIndex = $this->getSelectedPropertyIndex(
240
                                $urlParams['properties'],