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 ( b3f485...e9fc06 )
by Andy
13s
created
src/Commands/DiffCommand.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,8 @@  discard block
 block discarded – undo
46 46
 
47 47
         if (!empty($jobName)) {
48 48
             $changed = $this->printJobDiff($jobName);
49
-        } else {
49
+        }
50
+        else {
50 51
             $localJobUpdates = $jobComparisonBusinessCase->getLocalJobUpdates();
51 52
             if (!empty($localJobUpdates)) {
52 53
                 foreach ($localJobUpdates as $jobName) {
@@ -114,9 +115,11 @@  discard block
 block discarded – undo
114 115
 
115 116
                 if ($diffSign == '+') {
116 117
                     $this->output->writeln(sprintf("<info>%s\t%s: %s</info>", $diffSign, $property, ' ' . substr($diffLine, 1)));
117
-                } elseif ($diffSign == '-') {
118
+                }
119
+                elseif ($diffSign == '-') {
118 120
                     $this->output->writeln(sprintf("<fg=red>%s\t%s: %s</>", $diffSign, $property, ' ' . substr($diffLine, 1)));
119
-                } else {
121
+                }
122
+                else {
120 123
                     $this->output->writeln(sprintf(" \t%s: %s", $property, $diffLine));
121 124
                 }
122 125
             }
Please login to merge, or discard this patch.