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 ( bfef7d...a6590b )
by Marc
03:45
created
src/BusinessCase/JobManagement/AbstractStoreJobBusinessCase.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,8 @@
 block discarded – undo
70 70
             if (null == $_oLocalEntity)
71 71
             {
72 72
                 $this->addJobInLocalRepository($_oRemoteEntity);
73
-            } else {
73
+            }
74
+            else {
74 75
                 //update
75 76
                 $this->updateJobInLocalRepository($_oRemoteEntity, $bForceOverwrite);
76 77
             }
Please login to merge, or discard this patch.
src/Component/RemoteClients/ChronosApiClient.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,8 @@
 block discarded – undo
62 62
         if (!empty($oJobEntity->schedule) && empty($oJobEntity->parents))
63 63
         {
64 64
             $_sTargetUrl = '/scheduler/iso8601';
65
-        } elseif (empty($oJobEntity->schedule) && !empty($oJobEntity->parents))
65
+        }
66
+        elseif (empty($oJobEntity->schedule) && !empty($oJobEntity->parents))
66 67
         {
67 68
             $_sTargetUrl = '/scheduler/dependency';
68 69
         }
Please login to merge, or discard this patch.
src/Component/DatePeriod/DatePeriodFactory.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,7 @@
 block discarded – undo
38 38
         try
39 39
         {
40 40
             return self::$aIso8601Entity[$_sKey] = new Iso8601Entity($sIso8601);
41
-        }
42
-        catch (\InvalidArgumentException $_oException)
41
+        } catch (\InvalidArgumentException $_oException)
43 42
         {
44 43
             throw new DatePeriodException(sprintf("Can't init Iso8601Entity for '%s' iso 8601 string.", $sIso8601), 1, $_oException);
45 44
         }
Please login to merge, or discard this patch.
src/Service/JobRepository/Filter/FilterIgnoreSettings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
      * @param string $sDirectoryPath
97 97
      * @param array $aSearchPatterns
98 98
      */
99
-    private function getSearchPatternsFromDir($sDirectoryPath, &$aSearchPatterns=[])
99
+    private function getSearchPatternsFromDir($sDirectoryPath, &$aSearchPatterns = [])
100 100
     {
101 101
         $_sIgnoreFilePath = $sDirectoryPath . DIRECTORY_SEPARATOR . '.chapiignore';
102 102
 
Please login to merge, or discard this patch.
src/Component/RemoteClients/MarathonApiClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      */
68 68
     public function removeJob($sJobName)
69 69
     {
70
-        $_sTargetEndpoint = '/v2/apps/'.$sJobName;
70
+        $_sTargetEndpoint = '/v2/apps/' . $sJobName;
71 71
 
72 72
         $_oResponse = $this->oHttpClient->delete($_sTargetEndpoint);
73 73
         return ($_oResponse->getStatusCode() == 200);
Please login to merge, or discard this patch.