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

@@ 371-375 (lines=5) @@
368
                    ':field_' . $fieldName . $salt;
369
            }
370
371
            if ($orCondition['orCondition'] != null) {
372
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
373
            } else {
374
                $orCondition['orCondition'] = $whereCondition;
375
            }
376
377
            if ($op->haveSubstitutionPattern()) {
378
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
@@ 400-404 (lines=5) @@
397
                    $this->entityAlias . '.' . $fieldName . ' ' .
398
                    $op->getMeta() . ' ' .
399
                    $this->entityAlias . '.' . $value;
400
                if ($orCondition['orCondition'] != null) {
401
                    $orCondition['orCondition'] .= ' OR ' . $whereCondition;
402
                } else {
403
                    $orCondition['orCondition'] = $whereCondition;
404
                }
405
            }
406
        }
407
@@ 435-439 (lines=5) @@
432
                    ':field_' . $fieldName . $salt;
433
            }
434
435
            if ($orCondition['orCondition'] != null) {
436
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
437
            } else {
438
                $orCondition['orCondition'] = $whereCondition;
439
            }
440
441
            if ($op->haveSubstitutionPattern()) {
442
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {