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 ( 9b0b7e...94978a )
by Andy
02:26
created
src/Commands/DiffCommand.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,8 @@  discard block
 block discarded – undo
36 36
 
37 37
         if (!empty($jobName)) {
38 38
             $this->printJobDiff($jobName);
39
-        } else {
39
+        }
40
+        else {
40 41
             $localJobUpdates = $jobComparisonBusinessCase->getLocalJobUpdates();
41 42
             if (!empty($localJobUpdates)) {
42 43
                 foreach ($localJobUpdates as $jobName) {
@@ -79,9 +80,11 @@  discard block
 block discarded – undo
79 80
 
80 81
                 if ($diffSign == '+') {
81 82
                     $this->output->writeln(sprintf("<info>%s\t%s: %s</info>", $diffSign, $property, ' ' . substr($diffLine, 1)));
82
-                } elseif ($diffSign == '-') {
83
+                }
84
+                elseif ($diffSign == '-') {
83 85
                     $this->output->writeln(sprintf("<fg=red>%s\t%s: %s</>", $diffSign, $property, ' ' . substr($diffLine, 1)));
84
-                } else {
86
+                }
87
+                else {
85 88
                     $this->output->writeln(sprintf(" \t%s: %s", $property, $diffLine));
86 89
                 }
87 90
             }
Please login to merge, or discard this patch.