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 = 11-12 lines in 3 locations

modules/df/df_tools/df_tools.module 1 location

@@ 13-24 (lines=12) @@
10
/**
11
 * Implements hook_help().
12
 */
13
function df_tools_help($route_name, RouteMatchInterface $route_match) {
14
  switch ($route_name) {
15
    // Main module help for the df_tools module.
16
    case 'help.page.df_tools':
17
      $output = '';
18
      $output .= '<h3>' . t('About') . '</h3>';
19
      $output .= '<p>' . t('Wrapper for enabling all DF tools.') . '</p>';
20
      return $output;
21
22
    default:
23
  }
24
}
25
26
/**
27
 * Implements hook_theme().

modules/dfs/dfs_dev/dfs_dev.module 1 location

@@ 13-23 (lines=11) @@
10
/**
11
 * Implements hook_help().
12
 */
13
function dfs_dev_help($route_name, RouteMatchInterface $route_match) {
14
  switch ($route_name) {
15
    // Main module help for the dfs_dev module.
16
    case 'help.page.dfs_dev':
17
      $output = '';
18
      $output .= '<h3>' . t('About') . '</h3>';
19
      $output .= '<p>' . t('Demo Framework Scenario for Development Testing.') . '</p>';
20
      return $output;
21
    default:
22
  }
23
}
24
25
/**
26
 * Implements hook_theme().

modules/dfs/dfs_tec/dfs_tec.module 1 location

@@ 13-23 (lines=11) @@
10
/**
11
 * Implements hook_help().
12
 */
13
function dfs_tec_help($route_name, RouteMatchInterface $route_match) {
14
  switch ($route_name) {
15
    // Main module help for the dfs_dev module.
16
    case 'help.page.dfs_tec':
17
      $output = '';
18
      $output .= '<h3>' . t('About') . '</h3>';
19
      $output .= '<p>' . t('Demo Framework Scenario for Technology Websites.') . '</p>';
20
      return $output;
21
    default:
22
  }
23
}
24
25
/**
26
 * Implements hook_theme().