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
Pull Request — master (#44)
by Marc
05:59
created
src/Service/JobRepository/JobRepository.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,10 +84,12 @@
 block discarded – undo
84 84
     {
85 85
         if ($this->oRepositoryBridge->addJob($oJobEntity))
86 86
         {
87
-            if (!is_null($this->oJobCollection)) // if no collection inited the new job will init by chronos request
87
+            if (!is_null($this->oJobCollection)) {
88
+                // if no collection inited the new job will init by chronos request
88 89
             {
89 90
                 $this->oJobCollection->offsetSet($oJobEntity->name, $oJobEntity);
90 91
             }
92
+            }
91 93
 
92 94
             return true;
93 95
         }
Please login to merge, or discard this patch.
src/BusinessCase/Comparison/JobComparisonBusinessCase.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,8 +49,7 @@
 block discarded – undo
49 49
         if (JobUtils::isWildcard($aJobNames))
50 50
         {
51 51
             $_oJobIndexService->resetJobIndex();
52
-        }
53
-        else
52
+        } else
54 53
         {
55 54
             $_oJobIndexService->removeJobs($aJobNames);
56 55
         }
Please login to merge, or discard this patch.
src/Commands/StatusCommand.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -230,8 +230,7 @@
 block discarded – undo
230 230
                     // set path to job file map
231 231
                     $this->setJobFileToMap($_oJobEntity->name, $_sJobFilePath);
232 232
                 }
233
-            }
234
-            else
233
+            } else
235 234
             {
236 235
                 throw new JobLoadException(
237 236
                     sprintf('Unable to load json job data from "%s". Please check if the json is valid.', $_sJobFilePath),
Please login to merge, or discard this patch.
src/Commands/AbstractCommand.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,12 +125,14 @@
 block discarded – undo
125 125
         if (
126 126
             !file_exists($this->getHomeDir() . DIRECTORY_SEPARATOR . 'parameters.yml')
127 127
             AND !file_exists(getcwd() . DIRECTORY_SEPARATOR . '.chapiconfig')
128
-        ) // one file have to exist
128
+        ) {
129
+            // one file have to exist
129 130
         {
130 131
             $this->oOutput->writeln(sprintf(
131 132
                 '<error>%s</error>',
132 133
                 'No parameter file found. Please run "configure" command for initial setup or add a local `.chapiconfig` to your working directory.'
133 134
             ));
135
+        }
134 136
             return false;
135 137
         }
136 138
 
Please login to merge, or discard this patch.