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-users ( b8f4bb )
by Kevin
15:17 queued 59s
created

df_scenarios_info()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 5
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 6
rs 10
1
<?php
2
3
/**
4
 * @file
5
 * Scenarios hooks implemented by the Demo Framework scenario.
6
 */
7
8
/**
9
 * Implements hook_scenarios_info().
10
 */
11
function df_scenarios_info() {
12
  return [
13
    'df' => [
14
      'type' => 'profile',
15
      'label' => t('Demo Framework'),
16
      'description' => t('Demo Framework Scenario'),
17
    ],
18
  ];
19
}
20