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 ( 0b2d7e...6b30e2 )
by Kevin
05:11
created

df_tools_gdpr_toolbar_alter()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 2
rs 10
1
<?php
2
3
/**
4
 * @file
5
 * Contains df_tools_gdpr.module.
6
 */
7
8
/**
9
 * Implements hook_toolbar_alter().
10
 */
11
function df_tools_gdpr_toolbar_alter(&$items) {
12
  $items['administration']['#attached']['library'][] = 'df_tools_gdpr/toolbar';
13
}
14