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 (#68)
by Bidesh
03:32
created
src/Commands/StatusCommand.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,8 +115,7 @@
 block discarded – undo
115 115
                 {
116 116
                     $_aFilteredJobList[] = $_sJobName;
117 117
                 }
118
-            }
119
-            else
118
+            } else
120 119
             {
121 120
                 if (!$this->oJobIndexService->isJobInIndex($_sJobName))
122 121
                 {
Please login to merge, or discard this patch.
src/Component/Http/HttpGuzzlClient.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@
 block discarded – undo
54 54
         {
55 55
             $_oResponse = $this->oGuzzelClient->request('GET', $sUrl, $_aRequestOptions);
56 56
             return new HttpGuzzlResponse($_oResponse);
57
-        }
58
-        catch (\Exception $oException)
57
+        } catch (\Exception $oException)
59 58
         {
60 59
             throw new HttpConnectionException(
61 60
                 sprintf('Can\'t get response from "%s"', $this->oGuzzelClient->getConfig('base_uri') . $sUrl),
Please login to merge, or discard this patch.
src/BusinessCase/Comparison/ChronosJobComparisonBusinessCase.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -317,8 +317,7 @@
 block discarded – undo
317 317
         {
318 318
             $_oDateTime = new \DateTime(str_replace('Z', '', $_oIso8601Entity->sStartTime));
319 319
             $_oDateTime->setTimezone(new \DateTimeZone($sTimeZone));
320
-        }
321
-        else
320
+        } else
322 321
         {
323 322
             $_oDateTime = new \DateTime($_oIso8601Entity->sStartTime);
324 323
         }
Please login to merge, or discard this patch.
src/Service/JobRepository/JobRepository.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,10 +99,12 @@
 block discarded – undo
99 99
     {
100 100
         if ($this->oRepositoryBridge->addJob($oJobEntity))
101 101
         {
102
-            if (!is_null($this->oJobCollection)) // if no collection inited the new job will init by chronos request
102
+            if (!is_null($this->oJobCollection)) {
103
+                // if no collection inited the new job will init by chronos request
103 104
             {
104 105
                 $this->oJobCollection->offsetSet($oJobEntity->getKey(), $oJobEntity);
105 106
             }
107
+            }
106 108
 
107 109
             return true;
108 110
         }
Please login to merge, or discard this patch.
src/Commands/InfoCommand.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
                 $_mValue = (!empty($_mValue))
56 56
                     ? json_encode($_mValue, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)
57 57
                     : $_sEmptyString;
58
-            }
59
-            elseif (is_bool($_mValue))
58
+            } elseif (is_bool($_mValue))
60 59
             {
61 60
                 $_mValue = (true === $_mValue)
62 61
                     ? 'true'
Please login to merge, or discard this patch.
src/Service/JobRepository/BridgeFileSystem.php 1 patch
Braces   +9 added lines, -8 removed lines patch added patch discarded remove patch
@@ -155,8 +155,7 @@  discard block
 block discarded – undo
155 155
                 DIRECTORY_SEPARATOR,
156 156
                 $oJobEntity->getKey()
157 157
             );
158
-        }
159
-        else
158
+        } else
160 159
         {
161 160
             $_sJobPath = $oJobEntity->getKey();
162 161
         }
@@ -268,15 +267,19 @@  discard block
 block discarded – undo
268 267
 
269 268
             if ($_aTemp)
270 269
             {
271
-                if (property_exists($_aTemp, 'name')) // chronos
270
+                if (property_exists($_aTemp, 'name')) {
271
+                    // chronos
272 272
                 {
273 273
                     $_aJobEntities[] = new ChronosJobEntity($_aTemp);
274
+                }
274 275
 
275
-                } else if (property_exists($_aTemp, 'id')) //marathon
276
+                } else if (property_exists($_aTemp, 'id')) {
277
+                    //marathon
276 278
                 {
277 279
                     foreach ($this->getMarathonEntitiesForConfig($_aTemp) as $_oApp)
278 280
                     {
279 281
                         $_aJobEntities[] = $_oApp;
282
+                }
280 283
                     }
281 284
                 } else {
282 285
                     throw new JobLoadException(
@@ -297,8 +300,7 @@  discard block
 block discarded – undo
297 300
                     $_aJobs[] = $_oJobEntity;
298 301
                 }
299 302
 
300
-            }
301
-            else
303
+            } else
302 304
             {
303 305
                 throw new JobLoadException(
304 306
                     sprintf('Unable to load json job data from "%s". Please check if the json is valid.', $_sJobFilePath),
@@ -323,8 +325,7 @@  discard block
 block discarded – undo
323 325
                 $this->aGroupedApps[] = $_oApp->id;
324 326
                 $_aRet[] = $_oGroupEntity;
325 327
             }
326
-        }
327
-        else
328
+        } else
328 329
         {
329 330
             $_aRet[] = new MarathonAppEntity($aEntityData);
330 331
         }
Please login to merge, or discard this patch.
src/BusinessCase/JobManagement/MarathonStoreJobBusinessCase.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,8 +83,7 @@
 block discarded – undo
83 83
                         ));
84 84
                         return false;
85 85
                     }
86
-                }
87
-                catch(\Exception $e)
86
+                } catch(\Exception $e)
88 87
                 {
89 88
                     $this->oLogger->error(sprintf(
90 89
                         'Job %s cannot be added to remote : %s',$sAppId, $e->getMessage()
Please login to merge, or discard this patch.
src/BusinessCase/JobManagement/ChronosStoreJobBusinessCase.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -151,8 +151,7 @@
 block discarded – undo
151 151
             if ($this->oJobComparisonBusinessCase->hasSameJobType($_oJobEntityLocal, $_oJobEntityChronos))
152 152
             {
153 153
                 $_bHasUpdatedJob = $this->oJobRepositoryRemote->updateJob($_oJobEntityLocal);
154
-            }
155
-            else
154
+            } else
156 155
             {
157 156
                 $_bHasUpdatedJob = (
158 157
                     $this->oJobRepositoryRemote->removeJob($_oJobEntityChronos->getKey())
Please login to merge, or discard this patch.
src/BusinessCase/JobManagement/AbstractStoreJobBusinessCase.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@  discard block
 block discarded – undo
52 52
         if (empty($aEntityNames))
53 53
         {
54 54
             $_aRemoteEntities = $this->oJobRepositoryRemote->getJobs();
55
-        }
56
-        else
55
+        } else
57 56
         {
58 57
             $_aRemoteEntities = [];
59 58
             foreach ($aEntityNames as $_sJobName)
@@ -85,8 +84,7 @@  discard block
 block discarded – undo
85 84
                 'Entity %s stored in local repository',
86 85
                 $oAppRemote->getKey()
87 86
             ));
88
-        }
89
-        else {
87
+        } else {
90 88
             $this->oLogger->error(sprintf(
91 89
                 'Failed to store %s in local repository',
92 90
                 $oAppRemote->getKey()
@@ -116,8 +114,7 @@  discard block
 block discarded – undo
116 114
                     'Entity %s is updated in local repository',
117 115
                     $oAppRemote->getKey()
118 116
                 ));
119
-            }
120
-            else {
117
+            } else {
121 118
                 $this->oLogger->error(sprintf(
122 119
                     'Failed to update app %s in local repository',
123 120
                     $oAppRemote->getKey()
Please login to merge, or discard this patch.