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

@@ 354-358 (lines=5) @@
351
                $whereCondition = $this->entityAlias.'.'.$fieldName.' = :field_'.$fieldName . $salt;
352
            }
353
354
            if ($orCondition['orCondition'] != null) {
355
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
356
            } else {
357
                $orCondition['orCondition'] = $whereCondition;
358
            }
359
360
            if ($op->haveSubstitutionPattern()) {
361
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
@@ 382-386 (lines=5) @@
379
                $whereCondition = $this->entityAlias.'.'.$fieldName.' '.
380
                    $op->getMeta()
381
                    .' ' . $this->entityAlias . '.' . $value;
382
                if ($orCondition['orCondition'] != null) {
383
                    $orCondition['orCondition'] .= ' OR ' . $whereCondition;
384
                } else {
385
                    $orCondition['orCondition'] = $whereCondition;
386
                }
387
            }
388
        }
389
@@ 417-421 (lines=5) @@
414
                    .' :field_'.$fieldName . $salt;
415
            }
416
417
            if ($orCondition['orCondition'] != null) {
418
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
419
            } else {
420
                $orCondition['orCondition'] = $whereCondition;
421
            }
422
423
            if ($op->haveSubstitutionPattern()) {
424
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {