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 ( 6c3a27...fa66ab )
by Askupa
02:51
created
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.