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

@@ 362-366 (lines=5) @@
359
                    ':field_' . $fieldName . $salt;
360
            }
361
362
            if ($orCondition['orCondition'] != null) {
363
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
364
            } else {
365
                $orCondition['orCondition'] = $whereCondition;
366
            }
367
368
            if ($op->haveSubstitutionPattern()) {
369
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
@@ 391-395 (lines=5) @@
388
                    $this->entityAlias . '.' . $fieldName . ' ' .
389
                    $op->getMeta() . ' ' .
390
                    $this->entityAlias . '.' . $value;
391
                if ($orCondition['orCondition'] != null) {
392
                    $orCondition['orCondition'] .= ' OR ' . $whereCondition;
393
                } else {
394
                    $orCondition['orCondition'] = $whereCondition;
395
                }
396
            }
397
        }
398
@@ 426-430 (lines=5) @@
423
                    ':field_' . $fieldName . $salt;
424
            }
425
426
            if ($orCondition['orCondition'] != null) {
427
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
428
            } else {
429
                $orCondition['orCondition'] = $whereCondition;
430
            }
431
432
            if ($op->haveSubstitutionPattern()) {
433
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {