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

@@ 419-423 (lines=5) @@
416
                $whereCondition = $this->entityAlias.'.'.$fieldName.' = :field_'.$fieldName . $salt;
417
            }
418
419
            if ($orCondition['orCondition'] != null) {
420
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
421
            } else {
422
                $orCondition['orCondition'] = $whereCondition;
423
            }
424
425
            if (isset($operator['substitution_pattern'])) {
426
                if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) {
@@ 445-449 (lines=5) @@
442
            $isNotARelation = 0 !== strpos($fieldName, 'Embedded.');
443
            if ($isNotARelation) {
444
                $whereCondition = $this->entityAlias.'.'.$fieldName.' '.$operator['meta'].' ' . $this->entityAlias . '.' . $value;
445
                if ($orCondition['orCondition'] != null) {
446
                    $orCondition['orCondition'] .= ' OR ' . $whereCondition;
447
                } else {
448
                    $orCondition['orCondition'] = $whereCondition;
449
                }
450
            }
451
        }
452
@@ 480-484 (lines=5) @@
477
                $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt;
478
            }
479
480
            if ($orCondition['orCondition'] != null) {
481
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
482
            } else {
483
                $orCondition['orCondition'] = $whereCondition;
484
            }
485
486
            if (isset($operator['substitution_pattern'])) {
487
                if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) {