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 ( 20c3fc...7a9581 )
by Marc
13:38
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 3 patches
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.
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -44,22 +44,22 @@
 block discarded – undo
44 44
     private static $sHomeDir = '';
45 45
 
46 46
     /**
47
-    * Executes the current command.
48
-    *
49
-    * This method is not abstract because you can use this class
50
-    * as a concrete class. In this case, instead of defining the
51
-    * execute() method, you set the code to execute by passing
52
-    * a Closure to the setCode() method.
53
-    *
54
-    * @param InputInterface $oInput An InputInterface instance
55
-    * @param OutputInterface $oOutput An OutputInterface instance
56
-    *
57
-    * @return integer null or 0 if everything went fine, or an error code
58
-    *
59
-    * @throws \LogicException When this abstract method is not implemented
60
-    *
61
-    * @see setCode()
62
-    */
47
+     * Executes the current command.
48
+     *
49
+     * This method is not abstract because you can use this class
50
+     * as a concrete class. In this case, instead of defining the
51
+     * execute() method, you set the code to execute by passing
52
+     * a Closure to the setCode() method.
53
+     *
54
+     * @param InputInterface $oInput An InputInterface instance
55
+     * @param OutputInterface $oOutput An OutputInterface instance
56
+     *
57
+     * @return integer null or 0 if everything went fine, or an error code
58
+     *
59
+     * @throws \LogicException When this abstract method is not implemented
60
+     *
61
+     * @see setCode()
62
+     */
63 63
     protected function execute(InputInterface $oInput, OutputInterface $oOutput)
64 64
     {
65 65
         $this->oInput = $oInput;
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             $this->loadParameterConfig($this->getWorkingDir(), '.chapiconfig', $_oContainer);
100 100
 
101 101
             // load services
102
-            $_oLoader = new YamlFileLoader($_oContainer, new FileLocator(__DIR__ . self::FOLDER_RESOURCES));
102
+            $_oLoader = new YamlFileLoader($_oContainer, new FileLocator(__DIR__.self::FOLDER_RESOURCES));
103 103
             $_oLoader->load('services.yml');
104 104
 
105 105
             self::$oContainer = $_oContainer;
@@ -114,8 +114,8 @@  discard block
 block discarded – undo
114 114
     protected function isAppRunable()
115 115
     {
116 116
         if (
117
-            !file_exists($this->getHomeDir() . DIRECTORY_SEPARATOR . 'parameters.yml')
118
-            && !file_exists($this->getWorkingDir() . DIRECTORY_SEPARATOR . '.chapiconfig')
117
+            !file_exists($this->getHomeDir().DIRECTORY_SEPARATOR.'parameters.yml')
118
+            && !file_exists($this->getWorkingDir().DIRECTORY_SEPARATOR.'.chapiconfig')
119 119
         ) // one file have to exist
120 120
         {
121 121
             $this->oOutput->writeln(sprintf(
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
         $_sHomeDir = getenv('CHAPI_HOME');
142 142
         if (!$_sHomeDir)
143 143
         {
144
-            $_sHomeDir = CommandUtils::getOsHomeDir() . DIRECTORY_SEPARATOR . '.chapi';
144
+            $_sHomeDir = CommandUtils::getOsHomeDir().DIRECTORY_SEPARATOR.'.chapi';
145 145
         }
146 146
 
147 147
         CommandUtils::hasCreateDirectoryIfNotExists($_sHomeDir);
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
      */
155 155
     protected function getCacheDir()
156 156
     {
157
-        $_sCacheDir = $this->getHomeDir() . DIRECTORY_SEPARATOR . 'cache';
157
+        $_sCacheDir = $this->getHomeDir().DIRECTORY_SEPARATOR.'cache';
158 158
         CommandUtils::hasCreateDirectoryIfNotExists($_sCacheDir);
159 159
 
160 160
         return $_sCacheDir;
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     private function loadParameterConfig($sPath, $sFile, $oContainer)
177 177
     {
178 178
         // load local parameters
179
-        if (file_exists($sPath . DIRECTORY_SEPARATOR . $sFile))
179
+        if (file_exists($sPath.DIRECTORY_SEPARATOR.$sFile))
180 180
         {
181 181
             $_oLoader = new YamlFileLoader($oContainer, new FileLocator($sPath));
182 182
             $_oLoader->load($sFile);
Please login to merge, or discard this patch.
src/BusinessCase/JobManagement/StoreJobBusinessCase.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -101,8 +101,7 @@  discard block
 block discarded – undo
101 101
         if (empty($aJobNames))
102 102
         {
103 103
             $_aChronosJobs = $this->oJobRepositoryChronos->getJobs();
104
-        }
105
-        else
104
+        } else
106 105
         {
107 106
             $_aChronosJobs = [];
108 107
             foreach ($aJobNames as $_sJobName)
@@ -124,8 +123,7 @@  discard block
 block discarded – undo
124 123
                         'Job "%s" successfully stored in local repository',
125 124
                         $_oJobEntity->name
126 125
                     ));
127
-                }
128
-                else
126
+                } else
129 127
                 {
130 128
                     $this->oLogger->error(sprintf(
131 129
                         'Failed to store job "%s" in local repository',
@@ -156,8 +154,7 @@  discard block
 block discarded – undo
156 154
                         'Job "%s" successfully updated in local repository',
157 155
                         $_oJobEntity->name
158 156
                     ));
159
-                }
160
-                else
157
+                } else
161 158
                 {
162 159
                     $this->oLogger->error(sprintf(
163 160
                         'Failed to update job "%s" in local repository',
@@ -245,8 +242,7 @@  discard block
 block discarded – undo
245 242
             if ($this->oJobComparisonBusinessCase->hasSameJobType($_oJobEntityLocal, $_oJobEntityChronos))
246 243
             {
247 244
                 $_bHasUpdatedJob = $this->oJobRepositoryChronos->updateJob($_oJobEntityLocal);
248
-            }
249
-            else
245
+            } else
250 246
             {
251 247
                 $_bHasUpdatedJob = (
252 248
                     $this->oJobRepositoryChronos->removeJob($_oJobEntityChronos)
Please login to merge, or discard this patch.
src/Commands/ListCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -129,12 +129,12 @@
 block discarded – undo
129 129
                 ? 100 / $oJobEntity->successCount * $oJobEntity->errorCount
130 130
                 : 100;
131 131
 
132
-            $_aJobInfoText[] = 'errors rate: ' . round($_fErrorRate, 2) . '%';
132
+            $_aJobInfoText[] = 'errors rate: '.round($_fErrorRate, 2).'%';
133 133
         }
134 134
 
135 135
         if ($oJobEntity->errorsSinceLastSuccess > 0)
136 136
         {
137
-            $_aJobInfoText[] = 'errors since last success:' . $oJobEntity->errorsSinceLastSuccess;
137
+            $_aJobInfoText[] = 'errors since last success:'.$oJobEntity->errorsSinceLastSuccess;
138 138
         }
139 139
 
140 140
         return (!empty($_aJobInfoText))
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
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         $_sYaml = $_oDumper->dump(array('parameters' => $aToStore));
137 137
 
138 138
         $_oFileSystem = new Filesystem();
139
-        $_oFileSystem->dumpFile($this->getHomeDir() . '/parameters.yml', $_sYaml);
139
+        $_oFileSystem->dumpFile($this->getHomeDir().'/parameters.yml', $_sYaml);
140 140
     }
141 141
 
142 142
     /**
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
     private function getParameterValue($sKey, $mDefaultValue = null)
166 166
     {
167 167
         $_oParser = new Parser();
168
-        $_sParameterFile = $this->getHomeDir() . '/parameters.yml';
168
+        $_sParameterFile = $this->getHomeDir().'/parameters.yml';
169 169
 
170 170
         if (file_exists($_sParameterFile))
171 171
         {
Please login to merge, or discard this patch.
src/Component/Cache/DoctrineCache.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             md5($sCachePrefix),
37 37
             0,
38 38
             6
39
-        ) . '.';
39
+        ).'.';
40 40
     }
41 41
 
42 42
     /**
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public function set($sKey, $mValue, $iTTL = 0)
49 49
     {
50
-        return $this->oDoctrineCache->save($this->sCachePrefix . $sKey, $mValue, $iTTL);
50
+        return $this->oDoctrineCache->save($this->sCachePrefix.$sKey, $mValue, $iTTL);
51 51
     }
52 52
 
53 53
     /**
@@ -56,8 +56,8 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function get($sKey)
58 58
     {
59
-        return ($this->oDoctrineCache->contains($this->sCachePrefix . $sKey))
60
-            ? $this->oDoctrineCache->fetch($this->sCachePrefix . $sKey)
59
+        return ($this->oDoctrineCache->contains($this->sCachePrefix.$sKey))
60
+            ? $this->oDoctrineCache->fetch($this->sCachePrefix.$sKey)
61 61
             : null
62 62
         ;
63 63
     }
@@ -68,6 +68,6 @@  discard block
 block discarded – undo
68 68
      */
69 69
     public function delete($sKey)
70 70
     {
71
-        return $this->oDoctrineCache->delete($this->sCachePrefix . $sKey);
71
+        return $this->oDoctrineCache->delete($this->sCachePrefix.$sKey);
72 72
     }
73 73
 }
74 74
\ No newline at end of file
Please login to merge, or discard this patch.
src/Component/Chronos/ApiClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      */
83 83
     public function removeJob($sJobName)
84 84
     {
85
-        $_oResponse = $this->oHttpClient->delete('/scheduler/job/' . $sJobName);
85
+        $_oResponse = $this->oHttpClient->delete('/scheduler/job/'.$sJobName);
86 86
         return ($_oResponse->getStatusCode() == 204);
87 87
     }
88 88
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      */
92 92
     public function getJobStats($sJobName)
93 93
     {
94
-        return $this->sendGetJsonRequest('/scheduler/job/stat/' . $sJobName);
94
+        return $this->sendGetJsonRequest('/scheduler/job/stat/'.$sJobName);
95 95
     }
96 96
 
97 97
     /**
Please login to merge, or discard this patch.