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

@@ 246-256 (lines=11) @@
243
244
            $this->qBuilder->andWhere($whereCondition);
245
246
            if ($op->haveSubstitutionPattern()) {
247
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
248
                    $value = explode(',', $value);
249
                } else {
250
                    $value = str_replace(
251
                        '{string}',
252
                        $value,
253
                        $op->getSubstitutionPattern()
254
                    );
255
                }
256
            }
257
258
            $this->qBuilder->setParameter('field_' . $fieldName . $salt, $value);
259
        } else {
@@ 295-305 (lines=11) @@
292
            }
293
294
            $this->qBuilder->andWhere($whereCondition);
295
            if ($op->haveSubstitutionPattern()) {
296
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
297
                    $value = explode(',', $value);
298
                } else {
299
                    $value = str_replace(
300
                        '{string}',
301
                        $value,
302
                        $op->getSubstitutionPattern()
303
                    );
304
                }
305
            }
306
307
            $this->qBuilder->setParameter('field_' . $fieldName . $salt, $value);
308
        }
@@ 360-370 (lines=11) @@
357
                $orCondition['orCondition'] = $whereCondition;
358
            }
359
360
            if ($op->haveSubstitutionPattern()) {
361
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
362
                    $value = explode(',', $value);
363
                } else {
364
                    $value = str_replace(
365
                        '{string}',
366
                        $value,
367
                        $op->getSubstitutionPattern()
368
                    );
369
                }
370
            }
371
372
            $orCondition['parameters'][] = [
373
                'field' => 'field_' . $fieldName . $salt,
@@ 423-433 (lines=11) @@
420
                $orCondition['orCondition'] = $whereCondition;
421
            }
422
423
            if ($op->haveSubstitutionPattern()) {
424
                if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
425
                    $value = explode(',', $value);
426
                } else {
427
                    $value = str_replace(
428
                        '{string}',
429
                        $value,
430
                        $op->getSubstitutionPattern()
431
                    );
432
                }
433
            }
434
435
            $orCondition['parameters'][] = [
436
                'field' => 'field_' . $fieldName . $salt,