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.
Test Setup Failed
Push — sitestudio723 ( 5d262c...4083d5 )
by Kevin
04:45
created
modules/df/df_tools/df_tools_translation/df_tools_translation.module 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
   // Import each file.
69 69
   foreach ($langcodes as $langcode) {
70
-    $filepath = DRUPAL_ROOT . '/' . $path . '/translations/' . $langcode . '.po';
70
+    $filepath = DRUPAL_ROOT.'/'.$path.'/translations/'.$langcode.'.po';
71 71
     if (file_exists($filepath)) {
72 72
       \Drupal::moduleHandler()->loadInclude('locale', 'bulk.inc');
73 73
       \Drupal::moduleHandler()->loadInclude('locale', 'translation.inc');
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
       ]);
82 82
 
83 83
       $original_file = (object) [
84
-        'filename' => $langcode . '.po',
84
+        'filename' => $langcode.'.po',
85 85
         'uri' => $filepath
86 86
       ];
87 87
       $file = locale_translate_file_attach_properties($original_file, $options);
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     $path = \Drupal::service('path.current')->getPath();
101 101
     $language = $variables['language']->getId();
102 102
     $alias = \Drupal::service('path_alias.manager')->getAliasByPath($path, $language);
103
-    $url = Url::fromUri('internal:/' . $alias);
103
+    $url = Url::fromUri('internal:/'.$alias);
104 104
     $name = t($variables['language']->getName());
105 105
     $link = Link::fromTextAndUrl($name, $url)->toString();
106 106
     $variables['language_current_link'] = $link;
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
       if ($langcode == 'en') {
129 129
         $langcode = '';
130 130
       }
131
-      $url = Url::fromUri('base:/' . $langcode . $alias);
131
+      $url = Url::fromUri('base:/'.$langcode.$alias);
132 132
       $current_name = t($language->getName());
133 133
       $links[] = Link::fromTextAndUrl($current_name, $url)->toString();
134 134
     }
Please login to merge, or discard this patch.