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

modules/df/df_admin/df_admin.enable.inc 1 location

@@ 23-26 (lines=4) @@
20
 */
21
function df_admin_enable_scenario($module) {
22
  // If the scenario is already enabled, exit.
23
  if (module_exists($module)) {
24
    drupal_set_message(t('Scenario @module is already installed.', array('@module' => $module)), 'status');
25
    return FALSE;
26
  }
27
28
  // Check if it appears another scenario is installed.
29
  if (variable_get('df_admin_installed_scenario', FALSE)) {

modules/df/df_admin/df_admin.subscenario.inc 1 location

@@ 13-16 (lines=4) @@
10
 */
11
function df_admin_enable_sub_scenario($module) {
12
  // If the scenario is already enabled, exit.
13
  if (module_exists($module)) {
14
    drupal_set_message(t('Sub-scenario @module is already installed.', array('@module' => $module)), 'status');
15
    return FALSE;
16
  }
17
18
  // Load info file to grab base scenario.
19
  if (!$info = drupal_parse_info_file(drupal_get_path('module', $module) . '/' . $module . '.info')) {