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 ( 946f9b...901688 )
by Askupa
01:47
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 2 patches
Braces   +15 added lines, -5 removed lines patch added patch discarded remove patch
@@ -184,7 +184,9 @@  discard block
 block discarded – undo
184 184
         }
185 185
 
186 186
         $css = file_get_contents( $style['path'] );
187
-        if( $style['minify'] ) $css = $this->minify_css( $css );
187
+        if( $style['minify'] ) {
188
+            $css = $this->minify_css( $css );
189
+        }
188 190
         
189 191
         // Compile the dynamic CSS
190 192
         $compiled_css = $this->compile_css( 
@@ -310,9 +312,17 @@  discard block
 block discarded – undo
310 312
      */
311 313
     protected function strtoval( &$str )
312 314
     {
313
-        if( 'false' === strtolower($str) ) $str = false;
314
-        if( 'true' === strtolower($str) ) $str = true;
315
-        if( false !== strrpos( $str, "'" ) ) $str = str_replace ( "'", "", $str );
316
-        if( is_numeric( $str ) ) $str = floatval( $str );
315
+        if( 'false' === strtolower($str) ) {
316
+            $str = false;
317
+        }
318
+        if( 'true' === strtolower($str) ) {
319
+            $str = true;
320
+        }
321
+        if( false !== strrpos( $str, "'" ) ) {
322
+            $str = str_replace ( "'", "", $str );
323
+        }
324
+        if( is_numeric( $str ) ) {
325
+            $str = floatval( $str );
326
+        }
317 327
     }
318 328
 }
Please login to merge, or discard this patch.
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -152,6 +152,9 @@
 block discarded – undo
152 152
     
153 153
     /**
154 154
      * Register a filter function for a given stylesheet handle.
155
+     * @param string $handle
156
+     * @param string $filter_name
157
+     * @param callable $callback
155 158
      */
156 159
     public function register_filter( $handle, $filter_name, $callback )
157 160
     {
Please login to merge, or discard this patch.