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 2 locations

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

@@ 306-310 (lines=5) @@
303
                }
304
            }
305
306
            if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
307
                $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')';
308
            } else {
309
                $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt;
310
            }
311
312
            $this->qBuilder->andWhere($whereCondition);
313
            if (isset($operator['substitution_pattern'])) {
@@ 419-423 (lines=5) @@
416
                }
417
            }
418
419
            if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
420
                $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')';
421
            } else {
422
                $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt;
423
            }
424
425
            if ($orCondition['orCondition'] != null) {
426
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;