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 = 11-11 lines in 4 locations

src/Mado/QueryBundle/Queries/QueryBuilderFactory.php 4 locations

@@ 260-270 (lines=11) @@
257
258
            $this->qBuilder->andWhere($whereCondition);
259
260
            if ($op->haveSubstitutionPattern()) {
261
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
262
                    $value = explode(',', $value);
263
                } else {
264
                    $value = str_replace(
265
                        '{string}',
266
                        $value,
267
                        $op->getSubstitutionPattern()
268
                    );
269
                }
270
            }
271
272
            $this->qBuilder->setParameter('field_' . $fieldName . $salt, $value);
273
        } else {
@@ 312-322 (lines=11) @@
309
            }
310
311
            $this->qBuilder->andWhere($whereCondition);
312
            if ($op->haveSubstitutionPattern()) {
313
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
314
                    $value = explode(',', $value);
315
                } else {
316
                    $value = str_replace(
317
                        '{string}',
318
                        $value,
319
                        $op->getSubstitutionPattern()
320
                    );
321
                }
322
            }
323
324
            $this->qBuilder->setParameter('field_' . $fieldName . $salt, $value);
325
        }
@@ 377-387 (lines=11) @@
374
                $orCondition['orCondition'] = $whereCondition;
375
            }
376
377
            if ($op->haveSubstitutionPattern()) {
378
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
379
                    $value = explode(',', $value);
380
                } else {
381
                    $value = str_replace(
382
                        '{string}',
383
                        $value,
384
                        $op->getSubstitutionPattern()
385
                    );
386
                }
387
            }
388
389
            $orCondition['parameters'][] = [
390
                'field' => 'field_' . $fieldName . $salt,
@@ 441-451 (lines=11) @@
438
                $orCondition['orCondition'] = $whereCondition;
439
            }
440
441
            if ($op->haveSubstitutionPattern()) {
442
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
443
                    $value = explode(',', $value);
444
                } else {
445
                    $value = str_replace(
446
                        '{string}',
447
                        $value,
448
                        $op->getSubstitutionPattern()
449
                    );
450
                }
451
            }
452
453
            $orCondition['parameters'][] = [
454
                'field' => 'field_' . $fieldName . $salt,