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
Pull Request — master (#28)
by t
02:46 queued 27s
created
src/ihelpers/SensitiveWord.php 1 patch
Braces   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -166,8 +166,4 @@
 block discarded – undo
166 166
         $local->putFileContent($file, <<<EOT
167 167
 <?php
168 168
 
169
-return {$array};
170
-
171
-EOT);
172
-    }
173
-}
169
+return {$array}
174 170
\ No newline at end of file
Please login to merge, or discard this patch.
src/ihelpers/Console.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -523,7 +523,7 @@  discard block
 block discarded – undo
523 523
         if (class_exists('\Symfony\Component\Process\Process')) {
524 524
             try{
525 525
                 $process = new \Symfony\Component\Process\Process($command);
526
-            }catch(Exception $e){
526
+            } catch(Exception $e){
527 527
                 $process = new \Symfony\Component\Process\Process(Strings::toArray($command, ' '));
528 528
             }
529 529
 
@@ -532,7 +532,7 @@  discard block
 block discarded – undo
532 532
                 return false;
533 533
             }
534 534
             return $process->getOutput();
535
-        }else{
535
+        } else{
536 536
             return exec($command);
537 537
         }
538 538
     }
Please login to merge, or discard this patch.