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.
Passed
Push — 8.x-4.x-404 ( 6536f1...c61c81 )
by
unknown
04:55
created

dfs_default_scenarios_info()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 6
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 7
rs 10
1
<?php
2
3
/**
4
 * @file
5
 * Scenarios hooks implemented by the DFS One profile.
6
 */
7
8
/**
9
 * Implements hook_scenarios_info().
10
 */
11
function dfs_default_scenarios_info() {
12
  return [
13
    'dfs_default' => [
14
      'type' => 'module',
15
      'label' => t('DFS Default'),
16
      'description' => t('Demo Framework Scenario for default pages like 403 and 404.'),
17
      'imports' => ['/data'],
18
    ],
19
  ];
20
}
21