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/content/content.publish.php 2 locations

@@ 1015-1021 (lines=7) @@
1012
1013
        public function __viewNew()
1014
        {
1015
            if (!$section_id = SectionManager::fetchIDFromHandle($this->_context['section_handle'])) {
1016
                Administration::instance()->throwCustomError(
1017
                    __('The Section, %s, could not be found.',
1018
                        array('<code>' . $this->_context['section_handle'] . '</code>')),
1019
                    __('Unknown Section'),
1020
                    Page::HTTP_STATUS_NOT_FOUND
1021
                );
1022
            }
1023
1024
            $section = SectionManager::fetch($section_id);
@@ 1593-1599 (lines=7) @@
1590
1591
        public function __viewEdit()
1592
        {
1593
            if (!$section_id = SectionManager::fetchIDFromHandle($this->_context['section_handle'])) {
1594
                Administration::instance()->throwCustomError(
1595
                    __('The Section, %s, could not be found.',
1596
                        array('<code>' . $this->_context['section_handle'] . '</code>')),
1597
                    __('Unknown Section'),
1598
                    Page::HTTP_STATUS_NOT_FOUND
1599
                );
1600
            }
1601
1602
            $section = SectionManager::fetch($section_id);