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
02:54
created
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.
src/Commands/ConfigureCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
         $_sYaml = $_oDumper->dump(array('parameters' => $aToStore), 2);
166 166
 
167 167
         $_oFileSystem = new Filesystem();
168
-        $_oFileSystem->dumpFile($this->getHomeDir() . '/parameters.yml', $_sYaml);
168
+        $_oFileSystem->dumpFile($this->getHomeDir().'/parameters.yml', $_sYaml);
169 169
     }
170 170
 
171 171
     /**
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
     private function getParameterValue($sKey, $mDefaultValue = null)
195 195
     {
196 196
         $_oParser = new Parser();
197
-        $_sParameterFile = $this->getHomeDir() . '/parameters.yml';
197
+        $_sParameterFile = $this->getHomeDir().'/parameters.yml';
198 198
 
199 199
         if (file_exists($_sParameterFile))
200 200
         {
Please login to merge, or discard this patch.