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 ( a3658b...0dc292 )
by Kevin
05:55
created
themes/one/includes/page.inc 1 patch
Braces   +5 added lines, -10 removed lines patch added patch discarded remove patch
@@ -13,40 +13,35 @@
 block discarded – undo
13 13
   // Make Page Mangers pages full width
14 14
   elseif (\Drupal::routeMatch()->getRouteObject()->hasDefault('page_manager_page')) {
15 15
     $variables['container_class'] = 'container-fluid full';
16
-  }
17
-  else {
16
+  } else {
18 17
     $variables['container_class'] = 'container';
19 18
   }
20 19
 
21 20
   // Set container for Meta Header
22 21
   if (theme_get_setting('meta_header_full_width')) {
23 22
     $variables['meta_header_width'] = 'container-fluid';
24
-  }
25
-  else {
23
+  } else {
26 24
     $variables['meta_header_width'] = 'container';
27 25
   }
28 26
 
29 27
   // Set container for Navbar
30 28
   if (theme_get_setting('navbar_full_width')) {
31 29
     $variables['navbar_width'] = 'container-fluid';
32
-  }
33
-  else {
30
+  } else {
34 31
     $variables['navbar_width'] = 'container';
35 32
   }
36 33
 
37 34
   // Set container for Header
38 35
   if (theme_get_setting('header_full_width')) {
39 36
     $variables['header_width'] = 'container-fluid';
40
-  }
41
-  else {
37
+  } else {
42 38
     $variables['header_width'] = 'container';
43 39
   }
44 40
 
45 41
   // Set container for Footer
46 42
   if (theme_get_setting('footer_full_width')) {
47 43
     $variables['footer_width'] = 'container-fluid';
48
-  }
49
-  else {
44
+  } else {
50 45
     $variables['footer_width'] = 'container';
51 46
   }
52 47
 }
Please login to merge, or discard this patch.