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

src/Mado/QueryBundle/Queries/QueryBuilderFactory.php 3 locations

@@ 357-361 (lines=5) @@
354
                    ':field_' . $fieldName . $saltObj->getSalt();
355
            }
356
357
            if ($orCondition['orCondition'] != null) {
358
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
359
            } else {
360
                $orCondition['orCondition'] = $whereCondition;
361
            }
362
363
            if ($op->haveSubstitutionPattern()) {
364
                if ($filtering->isListOperator()) {
@@ 386-390 (lines=5) @@
383
                    $this->entityAlias . '.' . $fieldName . ' ' .
384
                    $op->getMeta() . ' ' .
385
                    $this->entityAlias . '.' . $value;
386
                if ($orCondition['orCondition'] != null) {
387
                    $orCondition['orCondition'] .= ' OR ' . $whereCondition;
388
                } else {
389
                    $orCondition['orCondition'] = $whereCondition;
390
                }
391
            }
392
        }
393
@@ 414-418 (lines=5) @@
411
                    ':field_' . $fieldName . $saltObj->getSalt();
412
            }
413
414
            if ($orCondition['orCondition'] != null) {
415
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
416
            } else {
417
                $orCondition['orCondition'] = $whereCondition;
418
            }
419
420
            if ($op->haveSubstitutionPattern()) {
421
                if ($filtering->isListOperator()) {