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

@@ 258-268 (lines=11) @@
255
256
            $this->qBuilder->andWhere($whereCondition);
257
258
            if ($op->haveSubstitutionPattern()) {
259
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
260
                    $value = explode(',', $value);
261
                } else {
262
                    $value = str_replace(
263
                        '{string}',
264
                        $value,
265
                        $op->getSubstitutionPattern()
266
                    );
267
                }
268
            }
269
270
            $this->qBuilder->setParameter('field_' . $fieldName . $saltObj->getSalt(), $value);
271
        } else {
@@ 303-313 (lines=11) @@
300
            }
301
302
            $this->qBuilder->andWhere($whereCondition);
303
            if ($op->haveSubstitutionPattern()) {
304
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
305
                    $value = explode(',', $value);
306
                } else {
307
                    $value = str_replace(
308
                        '{string}',
309
                        $value,
310
                        $op->getSubstitutionPattern()
311
                    );
312
                }
313
            }
314
315
            $this->qBuilder->setParameter('field_' . $fieldName . $saltObj->getSalt(), $value);
316
        }
@@ 368-378 (lines=11) @@
365
                $orCondition['orCondition'] = $whereCondition;
366
            }
367
368
            if ($op->haveSubstitutionPattern()) {
369
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
370
                    $value = explode(',', $value);
371
                } else {
372
                    $value = str_replace(
373
                        '{string}',
374
                        $value,
375
                        $op->getSubstitutionPattern()
376
                    );
377
                }
378
            }
379
380
            $orCondition['parameters'][] = [
381
                'field' => 'field_' . $fieldName . $salt,
@@ 432-442 (lines=11) @@
429
                $orCondition['orCondition'] = $whereCondition;
430
            }
431
432
            if ($op->haveSubstitutionPattern()) {
433
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
434
                    $value = explode(',', $value);
435
                } else {
436
                    $value = str_replace(
437
                        '{string}',
438
                        $value,
439
                        $op->getSubstitutionPattern()
440
                    );
441
                }
442
            }
443
444
            $orCondition['parameters'][] = [
445
                'field' => 'field_' . $fieldName . $salt,