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-ch-alone ( 13368a...de1319 )
by Brant
04:58
created
df_tools_tabs/src/Plugin/Field/FieldFormatter/TextWithTabFormatter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         '#attributes' => [
36 36
           'id' => $this->getFieldId($items, $delta),
37 37
         ],
38
-        '#prefix' => '<h3 class="df-tools-tabs-accordion-title">' . Xss::filter($item->tab_title) . '</h3>',
38
+        '#prefix' => '<h3 class="df-tools-tabs-accordion-title">'.Xss::filter($item->tab_title).'</h3>',
39 39
       ];
40 40
       $elements[$delta][] = [
41 41
         '#type' => 'processed_text',
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     ];
65 65
 
66 66
     foreach ($items as $delta => $item) {
67
-      $url = Url::fromUri('internal:#' . $this->getFieldId($items, $delta))->toRenderArray();
67
+      $url = Url::fromUri('internal:#'.$this->getFieldId($items, $delta))->toRenderArray();
68 68
       $tabs['#items'][] = [
69 69
         '#type' => 'link',
70 70
         '#title' => $item->tab_title,
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_user/src/Plugin/Block/UserDropdownBlock.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -109,13 +109,13 @@
 block discarded – undo
109 109
       $markup = '';
110 110
       $markup .= '<a class="login-dropdown-button standard-icon meta-icon-size left" data-toggle="user-logout-wrapper" aria-controls="user-logout-wrapper" aria-expanded="false">';
111 111
       $markup .= '<i class="icon ion-ios-person"></i>';
112
-      $markup .= '<span> '. $username . '</span>';
112
+      $markup .= '<span> '.$username.'</span>';
113 113
       $markup .= '</a>';
114 114
 
115 115
       $markup .= '<div id="user-logout-wrapper" class="dropdown-pane f-dropdown" data-dropdown aria-hidden="true" aria-autoclose="false" data-auto-focus="false">';
116 116
       $markup .= '<div class="user-links">';
117
-      $markup .= '<a class="" href="' . $user_page_url . '"><i class="icon ion-ios-person"></i> ' . $username . '</a>';
118
-      $markup .= '<a class="logout-button" href="' . $user_logout_url . '"><i class="icon ion-log-out"></i> ' . t('Log Out') . '</a>';
117
+      $markup .= '<a class="" href="'.$user_page_url.'"><i class="icon ion-ios-person"></i> '.$username.'</a>';
118
+      $markup .= '<a class="logout-button" href="'.$user_logout_url.'"><i class="icon ion-log-out"></i> '.t('Log Out').'</a>';
119 119
       $markup .= '</div>';
120 120
       $markup .= '</div>';
121 121
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,8 +99,7 @@
 block discarded – undo
99 99
       $login_wrapper['form'] = $form;
100 100
 
101 101
       $block['wrapper'] = $login_wrapper;
102
-    }
103
-    else {
102
+    } else {
104 103
       $username = $this->user->getDisplayName();
105 104
       $user_page_url = Url::fromRoute('user.page')->toString();
106 105
       $user_logout_url = Url::fromRoute('user.logout')->toString();
Please login to merge, or discard this patch.
df/df_tools/df_tools_user/src/Plugin/migrate/source/UserFromNodeTitle.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,12 +18,12 @@
 block discarded – undo
18 18
       $first_name = $strings[0];
19 19
       $last_name = $strings[1];
20 20
       $password = \Drupal::service('password')->hash('password');
21
-      $row->setSourceProperty('Name', $first_name . $last_name);
21
+      $row->setSourceProperty('Name', $first_name.$last_name);
22 22
       $row->setSourceProperty('First', $first_name);
23 23
       $row->setSourceProperty('Last', $last_name);
24 24
       $row->setSourceProperty('Pass', $password);
25 25
       $row->setSourceProperty('Status', 1);
26
-      $row->setSourceProperty('Mail', $first_name . $last_name . '@example.com');
26
+      $row->setSourceProperty('Mail', $first_name.$last_name.'@example.com');
27 27
     }
28 28
   }
29 29
 }
Please login to merge, or discard this patch.
df/df_tools/df_tools_user/src/Plugin/migrate/source/UserPictureFile.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,11 +16,11 @@
 block discarded – undo
16 16
 
17 17
   public function prepareRow(Row $row) {
18 18
     if ($image = $row->getSourceProperty('Picture')) {
19
-      $base_path = dirname($this->configuration['path']) . '/images/';
19
+      $base_path = dirname($this->configuration['path']).'/images/';
20 20
 
21 21
       // Setup our source/destination paths.
22
-      $path = $base_path . $image;
23
-      $destination_path = 'public://' . $image;
22
+      $path = $base_path.$image;
23
+      $destination_path = 'public://'.$image;
24 24
 
25 25
       // Copy the file.
26 26
       file_unmanaged_copy($path, $destination_path, FILE_EXISTS_REPLACE);
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_blocks/src/Copier.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,7 @@
 block discarded – undo
29 29
     // Copy and return the entity.
30 30
     if ($copy = $this->replicator->replicateEntity($entity)) {
31 31
       return $copy;
32
-    }
33
-    else {
32
+    } else {
34 33
       return false;
35 34
     }
36 35
   }
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_cta/df_tools_cta.module 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,19 +20,19 @@
 block discarded – undo
20 20
       'render element' => 'content',
21 21
       'base hook' => 'node',
22 22
       'template' => 'node--cta',
23
-      'path' => drupal_get_path('module', 'df_tools_cta') . '/templates',
23
+      'path' => drupal_get_path('module', 'df_tools_cta').'/templates',
24 24
   );
25 25
   $theme['node__cta__callout'] = array(
26 26
       'render element' => 'content',
27 27
       'base hook' => 'node',
28 28
       'template' => 'node--cta--callout',
29
-      'path' => drupal_get_path('module', 'df_tools_cta') . '/templates',
29
+      'path' => drupal_get_path('module', 'df_tools_cta').'/templates',
30 30
   );
31 31
   $theme['node__cta__notification'] = array(
32 32
       'render element' => 'content',
33 33
       'base hook' => 'node',
34 34
       'template' => 'node--cta--notification',
35
-      'path' => drupal_get_path('module', 'df_tools_cta') . '/templates',
35
+      'path' => drupal_get_path('module', 'df_tools_cta').'/templates',
36 36
   );
37 37
   return $theme;
38 38
 }
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_media/src/Plugin/migrate/source/MediaImage.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@
 block discarded – undo
20 20
         ->getStorage('file')->loadByProperties(['filename' => $image]);
21 21
 
22 22
       if (empty($files)) {
23
-        $base_path = dirname($this->configuration['path']) . '/images/';
24
-        $path = $base_path . $image;
23
+        $base_path = dirname($this->configuration['path']).'/images/';
24
+        $path = $base_path.$image;
25 25
         $data = file_get_contents($path);
26 26
         $uri = file_build_uri($image);
27 27
         $file = file_save_data($data, $uri);
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,7 @@
 block discarded – undo
25 25
         $data = file_get_contents($path);
26 26
         $uri = file_build_uri($image);
27 27
         $file = file_save_data($data, $uri);
28
-      }
29
-      else {
28
+      } else {
30 29
         $file = reset($files);
31 30
       }
32 31
 
Please login to merge, or discard this patch.
src/IniEncoder.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,12 +43,12 @@  discard block
 block discarded – undo
43 43
         }
44 44
         else {
45 45
           foreach ($value as $j) {
46
-            $output[] = $this->keysToString($keys) . '[] = ' . $j;
46
+            $output[] = $this->keysToString($keys).'[] = '.$j;
47 47
           }
48 48
         }
49 49
       }
50 50
       else {
51
-        $output[] = $this->keysToString($keys) . ' = ' . $value;
51
+        $output[] = $this->keysToString($keys).' = '.$value;
52 52
       }
53 53
 
54 54
       array_pop($keys);
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
   protected function keysToString(array $keys) {
70 70
     $head = array_shift($keys);
71 71
     if ($keys) {
72
-      return $head . '[' . implode('][', $keys) . ']';
72
+      return $head.'['.implode('][', $keys).']';
73 73
     }
74 74
     else {
75 75
       return $head;
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         foreach (['key', 'value1', 'value2', 'value3'] as $var) {
124 124
           $$var = isset($match[++$i]) ? $match[$i] : '';
125 125
         }
126
-        $value = stripslashes(substr($value1, 1, -1)) . stripslashes(substr($value2, 1, -1)) . $value3;
126
+        $value = stripslashes(substr($value1, 1, -1)).stripslashes(substr($value2, 1, -1)).$value3;
127 127
 
128 128
         // Parse array syntax.
129 129
         $keys = preg_split('/\]?\[/', rtrim($key, ']'));
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -40,14 +40,12 @@  discard block
 block discarded – undo
40 40
       if (is_array($value)) {
41 41
         if ($this->isAssociative($value)) {
42 42
           $output = array_merge($output, $this->doEncode($value, $keys));
43
-        }
44
-        else {
43
+        } else {
45 44
           foreach ($value as $j) {
46 45
             $output[] = $this->keysToString($keys) . '[] = ' . $j;
47 46
           }
48 47
         }
49
-      }
50
-      else {
48
+      } else {
51 49
         $output[] = $this->keysToString($keys) . ' = ' . $value;
52 50
       }
53 51
 
@@ -70,8 +68,7 @@  discard block
 block discarded – undo
70 68
     $head = array_shift($keys);
71 69
     if ($keys) {
72 70
       return $head . '[' . implode('][', $keys) . ']';
73
-    }
74
-    else {
71
+    } else {
75 72
       return $head;
76 73
     }
77 74
   }
Please login to merge, or discard this patch.
modules/df/df_tools/df_tools_media/src/Plugin/Block/MediaEmbedBlock.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
       $selection['table'][$mid] = [
140 140
         '#attributes' => [
141 141
           'class' => ['draggable'],
142
-          'data-entity-id' => $media->getEntityTypeId() . ':' . $mid,
142
+          'data-entity-id' => $media->getEntityTypeId().':'.$mid,
143 143
         ],
144 144
         'title' => ['#markup' => $media->label()],
145 145
         'type' => ['#markup' => $bundle_info[$media->bundle()]['label']],
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -206,8 +206,7 @@  discard block
 block discarded – undo
206 206
       if ($media && $media->access('view')) {
207 207
         if (isset(static::$recursiveRenderDepth[$mid])) {
208 208
           static::$recursiveRenderDepth[$mid]++;
209
-        }
210
-        else {
209
+        } else {
211 210
           static::$recursiveRenderDepth[$mid] = 1;
212 211
         }
213 212
 
@@ -236,8 +235,7 @@  discard block
 block discarded – undo
236 235
       $mids = \Drupal::entityQuery('media')
237 236
         ->condition('uuid', $this->configuration['uuids'], 'IN')
238 237
         ->execute();
239
-    }
240
-    else {
238
+    } else {
241 239
       $mids = [];
242 240
     }
243 241
 
Please login to merge, or discard this patch.