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

@@ 339-343 (lines=5) @@
336
                    ':field_' . $fieldName . $saltObj->getSalt();
337
            }
338
339
            if ($orCondition['orCondition'] != null) {
340
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
341
            } else {
342
                $orCondition['orCondition'] = $whereCondition;
343
            }
344
345
            if ($op->haveSubstitutionPattern()) {
346
                if ($filtering->isListOperator()) {
@@ 368-372 (lines=5) @@
365
                    $this->entityAlias . '.' . $fieldName . ' ' .
366
                    $op->getMeta() . ' ' .
367
                    $this->entityAlias . '.' . $value;
368
                if ($orCondition['orCondition'] != null) {
369
                    $orCondition['orCondition'] .= ' OR ' . $whereCondition;
370
                } else {
371
                    $orCondition['orCondition'] = $whereCondition;
372
                }
373
            }
374
        }
375
@@ 396-400 (lines=5) @@
393
                    ':field_' . $fieldName . $saltObj->getSalt();
394
            }
395
396
            if ($orCondition['orCondition'] != null) {
397
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;
398
            } else {
399
                $orCondition['orCondition'] = $whereCondition;
400
            }
401
402
            if ($op->haveSubstitutionPattern()) {
403
                if ($filtering->isListOperator()) {