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 ( 6f1bf4...7bdf98 )
by Askupa
02:25
created
compiler.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,9 @@
 block discarded – undo
171 171
         }
172 172
 
173 173
         $css = file_get_contents( $style['path'] );
174
-        if( $style['minify'] ) $css = $this->minify_css( $css );
174
+        if( $style['minify'] ) {
175
+            $css = $this->minify_css( $css );
176
+        }
175 177
         $compiled_css = $this->compile_css( $css, $this->callbacks[$style['handle']] );
176 178
         $cache->update( $style['handle'], $compiled_css );
177 179
         return $compiled_css;
Please login to merge, or discard this patch.