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 ( ae8a1f...7adc38 )
by Kevin
04:49
created

dfs_one_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
eloc 5
dl 0
loc 6
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 0
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_one_scenarios_info() {
12
  return [
13
    'dfs_one' => [
14
      'label' => t('DFS ONE'),
15
      'description' => t('Demo Framework Scenario for One.'),
16
      'migrations' => _dfs_one_migrations(),
0 ignored issues
show
Bug introduced by
The function _dfs_one_migrations was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

16
      'migrations' => /** @scrutinizer ignore-call */ _dfs_one_migrations(),
Loading history...
17
    ],
18
  ];
19
}
20