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.
Completed
Push — 8.x-1.x ( 542ac3...824640 )
by
unknown
02:37
created
modules/dfs/dfs_tec/src/Plugin/migrate/source/EmployeeNode.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
       $links_raw = explode(',', $value);
34 34
       $links = [];
35 35
       foreach ($links_raw as $link) {
36
-          list($uri,$title) = explode('|', $link);
36
+          list($uri, $title) = explode('|', $link);
37 37
           $links[] = [
38 38
             'uri' => $uri,
39 39
             'title' => $title,
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_migration/df_tools_migration.module 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
   // Point source path to local CSV file.
58 58
   if ($local_csv == TRUE) {
59 59
     $source = $migration->get('source');
60
-    $source['path'] = $path . $prefix . "." . $entity_type  . "." . $type . '.csv';
60
+    $source['path'] = $path . $prefix . "." . $entity_type . "." . $type . '.csv';
61 61
     // Set new source and process modifications.
62 62
     $migration->set('source', $source);
63 63
   }
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_panelizer/df_tools_panelizer.drush.inc 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     }
50 50
 
51 51
     // Write YAML to a file.
52
-    $panels_file = $base_path . '/data/panelizer.panels_display.node.'.$node->uuid() . '.yml';
52
+    $panels_file = $base_path . '/data/panelizer.panels_display.node.' . $node->uuid() . '.yml';
53 53
     $yaml = \Symfony\Component\Yaml\Yaml::dump($node->panelizer->panels_display, 99, 2);
54 54
     file_put_contents($panels_file, $yaml);
55 55
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
 
56 56
     drupal_set_message(t('Successfully exported Panelizer display for Node @nid to @panels_file', ['@nid' => $node->id(), '@panels_file' => $panels_file]));
57 57
     return TRUE;
58
-  }
59
-  else {
58
+  } else {
60 59
     drupal_set_message(t('The given Node is not Panelized.'), 'error');
61 60
     return FALSE;
62 61
   }
Please login to merge, or discard this patch.