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 ( c27de4...be830d )
by Askupa
03:37 queued 01:35
created
compiler.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,9 @@
 block discarded – undo
71 71
         $styles = array_filter($this->stylesheets, array( $this, 'filter_print' ) );
72 72
         
73 73
         // Bail if there are no styles to be printed
74
-        if( count( $styles ) === 0 ) return;
74
+        if( count( $styles ) === 0 ) {
75
+            return;
76
+        }
75 77
         
76 78
         foreach( $styles as $style ) 
77 79
         {
Please login to merge, or discard this patch.
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.