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 — master ( 34af2e...6f1bf4 )
by Askupa
02:12
created
bootstrap.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,9 @@
 block discarded – undo
26 26
 /**
27 27
  * Prevent loading the library more than once
28 28
  */
29
-if( defined( 'WP_DYNAMIC_CSS' ) ) return;
29
+if( defined( 'WP_DYNAMIC_CSS' ) ) {
30
+    return;
31
+}
30 32
 define( 'WP_DYNAMIC_CSS', true );
31 33
 
32 34
 /**
Please login to merge, or discard this patch.
compiler.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,9 @@  discard block
 block discarded – undo
75 75
         $styles = array_filter($this->stylesheets, array( $this, 'filter_print' ) );
76 76
         
77 77
         // Bail if there are no styles to be printed
78
-        if( count( $styles ) === 0 ) return;
78
+        if( count( $styles ) === 0 ) {
79
+            return;
80
+        }
79 81
         
80 82
         $compiled_css = $this->compile_styles( $styles );
81 83
         
@@ -142,7 +144,9 @@  discard block
 block discarded – undo
142 144
         foreach( $styles as $style ) 
143 145
         {
144 146
             $css = file_get_contents( $style['path'] );
145
-            if( $style['minify'] ) $css = $this->minify_css ( $css );
147
+            if( $style['minify'] ) {
148
+                $css = $this->minify_css ( $css );
149
+            }
146 150
             $compiled_css .= $this->compile_css( $css, $this->callbacks[$style['handle']] )."\n";
147 151
         }
148 152
         return $compiled_css;
Please login to merge, or discard this patch.