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

symphony/content/content.blueprintsevents.php 1 location

@@ 114-118 (lines=5) @@
111
        }
112
113
        // Handle name on edited changes, or from reading an edited datasource
114
        if (isset($about['name'])) {
115
            $name = $about['name'];
116
        } elseif (isset($fields['name'])) {
117
            $name = $fields['name'];
118
        }
119
120
        $this->setPageType('form');
121
        $this->setTitle(__(($isEditing ? '%1$s – %2$s – %3$s' : '%2$s – %3$s'), array($name, __('Events'), __('Symphony'))));

symphony/content/content.blueprintsdatasources.php 1 location

@@ 182-186 (lines=5) @@
179
        }
180
181
        // Handle name on edited changes, or from reading an edited datasource
182
        if (isset($about['name'])) {
183
            $name = $about['name'];
184
        } elseif (isset($fields['name'])) {
185
            $name = $fields['name'];
186
        }
187
188
        $this->setPageType('form');
189
        $this->setTitle(__(($isEditing ? '%1$s – %2$s – %3$s' : '%2$s – %3$s'), array($name, __('Data Sources'), __('Symphony'))));