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 = 7-7 lines in 2 locations

symphony/lib/toolkit/data-sources/class.datasource.section.php 2 locations

@@ 583-589 (lines=7) @@
580
                    if ($singleParam) {
581
                        $this->_param_pool[$key][] = $entry->get('id');
582
                    }
583
                } elseif ($param === 'system:author') {
584
                    $this->_param_pool[$param_key][] = $entry->get('author_id');
585
586
                    if ($singleParam) {
587
                        $this->_param_pool[$key][] = $entry->get('author_id');
588
                    }
589
                } elseif ($param === 'system:creation-date' || $param === 'system:date') {
590
                    $this->_param_pool[$param_key][] = $entry->get('creation_date');
591
592
                    if ($singleParam) {
@@ 595-601 (lines=7) @@
592
                    if ($singleParam) {
593
                        $this->_param_pool[$key][] = $entry->get('creation_date');
594
                    }
595
                } elseif ($param === 'system:modification-date') {
596
                    $this->_param_pool[$param_key][] = $entry->get('modification_date');
597
598
                    if ($singleParam) {
599
                        $this->_param_pool[$key][] = $entry->get('modification_date');
600
                    }
601
                }
602
            }
603
        }
604