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

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

@@ 228-232 (lines=5) @@
225
        if (in_array($fieldName, $this->fields)) {
226
227
            $salt = '';
228
            foreach ($this->qBuilder->getParameters() as $parameter) {
229
                if ($parameter->getName() == 'field_' . $fieldName) {
230
                    $salt = '_' . rand(111, 999);
231
                }
232
            }
233
234
            if ($filtering->hasOperator()) {
235
                if ('list' == $filtering->getOperator()) {
@@ 293-297 (lines=5) @@
290
            $fieldName = $this->parser->camelize($embeddedFields[count($embeddedFields)-1]);
291
292
            $salt = '';
293
            foreach ($this->qBuilder->getParameters() as $parameter) {
294
                if ($parameter->getName() == 'field_' . $fieldName) {
295
                    $salt = '_' . rand(111, 999);
296
                }
297
            }
298
299
            if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
300
                $whereCondition =
@@ 340-344 (lines=5) @@
337
        if (in_array($fieldName, $this->fields)) {
338
339
            $salt = '';
340
            foreach ($this->qBuilder->getParameters() as $parameter) {
341
                if ($parameter->getName() == 'field_' . $fieldName) {
342
                    $salt = '_' . rand(111, 999);
343
                }
344
            }
345
346
            if ($filtering->hasOperator()) {
347
                if ('list' == $filtering->getOperator()) {
@@ 417-421 (lines=5) @@
414
            $fieldName = $this->parser->camelize($embeddedFields[count($embeddedFields)-1]);
415
416
            $salt = '';
417
            foreach ($this->qBuilder->getParameters() as $parameter) {
418
                if ($parameter->getName() == 'field_' . $fieldName) {
419
                    $salt = '_' . rand(111, 999);
420
                }
421
            }
422
423
            if ($filtering->hasOperator() && 'list' == $filtering->getOperator()) {
424
                $whereCondition =