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.
Passed
Push — master ( f28312...62896a )
by
unknown
02:33
created
src/Helpers/Common.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -502,14 +502,18 @@
 block discarded – undo
502 502
                 $key = $h[ 0 ]; // [+]
503 503
             } else // [+]
504 504
             { // [+]
505
-                if (substr($h[ 0 ], 0, 1) == "\t") // [+]
505
+                if (substr($h[ 0 ], 0, 1) == "\t") {
506
+                    // [+]
506 507
                 {
507 508
                     $headers[ $key ] .= "\r\n\t" . trim($h[ 0 ]);
509
+                }
508 510
                 } // [+]
509
-                elseif ( ! $key) // [+]
511
+                elseif ( ! $key) {
512
+                    // [+]
510 513
                 {
511 514
                     $headers[ 0 ] = trim($h[ 0 ]);
512 515
                 }
516
+                }
513 517
                 trim($h[ 0 ]); // [+]
514 518
             } // [+]
515 519
         }
Please login to merge, or discard this patch.