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

@@ 302-306 (lines=5) @@
299
                }
300
            }
301
302
            if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) {
303
                $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')';
304
            } else {
305
                $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt;
306
            }
307
308
            $this->qBuilder->andWhere($whereCondition);
309
            if (isset($operator['substitution_pattern'])) {
@@ 431-435 (lines=5) @@
428
                $salt = '_' . rand(111, 999);
429
            }
430
431
            if (isset($filterAndOperator[1]) && 'list' == $filterAndOperator[1]) {
432
                $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' (:field_'.$fieldName . $salt . ')';
433
            } else {
434
                $whereCondition = $relationEntityAlias.'.'.$fieldName.' '.$operator['meta'].' :field_'.$fieldName . $salt;
435
            }
436
437
            if ($orCondition['orCondition'] != null) {
438
                $orCondition['orCondition'] .= ' OR ' . $whereCondition;