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

@@ 292-294 (lines=3) @@
289
                    }
290
                    foreach ($selections as $selection) {
291
                        if ($filterSet->is_range_slider) {
292
                            if ((int)$selection['value'] > $item['max']) {
293
                                $item['max'] = (int)$selection['value'];
294
                            }
295
                            if ((int)$selection['value'] < $item['min']) {
296
                                $item['min'] = (int)$selection['value'];
297
                            }
@@ 295-297 (lines=3) @@
292
                            if ((int)$selection['value'] > $item['max']) {
293
                                $item['max'] = (int)$selection['value'];
294
                            }
295
                            if ((int)$selection['value'] < $item['min']) {
296
                                $item['min'] = (int)$selection['value'];
297
                            }
298
                        } elseif($item['multiple']) {
299
                            $selectedPropertyIndex = $this->getSelectedPropertyIndex(
300
                                $urlParams['properties'],