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
Branch feature/add_marathon_support (b15d53)
by Marc
16:34
created
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/AbstractCommand.php 1 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/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/Commands/SchedulingViewCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         $_iStartTime = ($_sStartTime == null) ? $_iCurrentTime : strtotime($_sStartTime);
74 74
         if ($_sStartTime != null && $_iStartTime < $_iCurrentTime)
75 75
         {
76
-            $_iStartTime = strtotime($_sStartTime . ' + 24 hours');
76
+            $_iStartTime = strtotime($_sStartTime.' + 24 hours');
77 77
         }
78 78
 
79 79
         $_iEndTime = ($_sEndTime == null) ? $_iStartTime + 7200 : strtotime($_sEndTime);
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
         $_oTable = new Table($this->oOutput);
96 96
         $_oTable->setHeaders(array(
97 97
             'Job',
98
-            'Timeline for ' . date('Y-m-d H:i', $iStartTime) . ' till ' . date('Y-m-d H:i', $iEndTime)
98
+            'Timeline for '.date('Y-m-d H:i', $iStartTime).' till '.date('Y-m-d H:i', $iEndTime)
99 99
         ));
100 100
 
101 101
         $_aJobs = $this->getJobsWhichShouldStartInPeriod($iStartTime, $iEndTime);
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 
164 164
             $oTable->addRow(
165 165
                 array(
166
-                    str_repeat('   ', $iCurrentChildLevel) . '|_ ' . $_sChildJobName,
166
+                    str_repeat('   ', $iCurrentChildLevel).'|_ '.$_sChildJobName,
167 167
                     $this->getTimelineStr(
168 168
                         $oDisplayPeriod,
169 169
                         $oJobDatePeriod,
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
         {
318 318
             if ($iJobStartTimeDelay > 0)
319 319
             {
320
-                $_oJobTime->add(new \DateInterval('PT' . $iJobStartTimeDelay . 'S'));
320
+                $_oJobTime->add(new \DateInterval('PT'.$iJobStartTimeDelay.'S'));
321 321
             }
322 322
 
323 323
             $_aStartTimes[$_oJobTime->format('YmdHi')] = $_oJobTime;
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/Http/HttpGuzzlClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
         catch (\Exception $oException)
59 59
         {
60 60
             throw new HttpConnectionException(
61
-                sprintf('Can\'t get response from "%s"', $this->oGuzzelClient->getConfig('base_uri') . $sUrl),
61
+                sprintf('Can\'t get response from "%s"', $this->oGuzzelClient->getConfig('base_uri').$sUrl),
62 62
                 0,
63 63
                 $oException
64 64
             );
Please login to merge, or discard this patch.
src/BusinessCase/Comparison/ChronosJobComparisonBusinessCase.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@
 block discarded – undo
46 46
 
47 47
 
48 48
     /**
49
-     * @param JobRepositoryInterface $oJobRepositoryLocal
49
+     * @param JobRepositoryInterface $oJobRepositoryLocalChronos
50 50
      * @param JobRepositoryInterface $oJobRepositoryChronos
51
-     * @param JobRepositoryInterface $oJobRepositoryMarathon
51
+     * @param JobRepositoryInterface $oJobRepositoryLocalChronos
52 52
      * @param DiffCompareInterface $oDiffCompare
53 53
      * @param DatePeriodFactoryInterface $oDatePeriodFactory
54 54
      * @param LoggerInterface $oLogger
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
      */
86 86
     public function getRemoteMissingJobs()
87 87
     {
88
-        $_ret =  $this->getMissingJobsInCollectionA(
88
+        $_ret = $this->getMissingJobsInCollectionA(
89 89
             $this->oJobRepositoryChronos->getJobs(),
90 90
             $this->oJobRepositoryLocalChronos->getJobs()
91 91
         );
Please login to merge, or discard this patch.
src/BusinessCase/JobManagement/MarathonStoreJobBusinessCase.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -150,6 +150,9 @@  discard block
 block discarded – undo
150 150
         return !(count($arr) == count(array_unique($arr)));
151 151
     }
152 152
 
153
+    /**
154
+     * @param integer $immediateChildren
155
+     */
153 156
     private function isDependencyCircular(JobEntityInterface $oEntity, $immediateChildren, &$path=[])
154 157
     {
155 158
         // Invariant: path will not have duplicates for acyclic dependency tree
@@ -310,6 +313,9 @@  discard block
 block discarded – undo
310 313
         }
311 314
     }
312 315
 
316
+    /**
317
+     * @param boolean $bForceOverwrite
318
+     */
313 319
     private function updateJobInLocalRepository($oAppRemote, $bForceOverwrite)
314 320
     {
315 321
         $_aDiff = $this->oJobComparisionBusinessCase->getJobDiff($oAppRemote->getKey());
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
             $_oJobEntityLocal = $this->oJobRepositoryLocal->getJob($sAppId);
90 90
 
91 91
             // check if dependency is satisfied
92
-            if ( $_oJobEntityLocal->isDependencyJob())
92
+            if ($_oJobEntityLocal->isDependencyJob())
93 93
             {
94 94
                 try {
95 95
                     $circular = $this->isDependencyCircular($_oJobEntityLocal, count($_oJobEntityLocal->dependencies));
@@ -101,10 +101,10 @@  discard block
 block discarded – undo
101 101
                         return false;
102 102
                     }
103 103
                 }
104
-                catch(\Exception $e)
104
+                catch (\Exception $e)
105 105
                 {
106 106
                     $this->oLogger->error(sprintf(
107
-                        "Job %s cannot be added to remote : %s",$sAppId, $e->getMessage()
107
+                        "Job %s cannot be added to remote : %s", $sAppId, $e->getMessage()
108 108
                     ));
109 109
                     return false;
110 110
                 }
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         return !(count($arr) == count(array_unique($arr)));
151 151
     }
152 152
 
153
-    private function isDependencyCircular(JobEntityInterface $oEntity, $immediateChildren, &$path=[])
153
+    private function isDependencyCircular(JobEntityInterface $oEntity, $immediateChildren, &$path = [])
154 154
     {
155 155
         // Invariant: path will not have duplicates for acyclic dependency tree
156 156
         if ($this->hasDuplicates($path))
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
             // for B intermediate Child will be 2.
197 197
             // when we process D, it will be reduced to 1 and with C to 0
198 198
             // then we will pop B to generate path [A, E] when we reach E.
199
-            $immediateChildren = $immediateChildren -1;
199
+            $immediateChildren = $immediateChildren - 1;
200 200
             if ($immediateChildren == 0)
201 201
             {
202 202
                 array_pop($path);
Please login to merge, or discard this patch.
src/BusinessCase/JobManagement/StoreJobBusinessCaseFactoryInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     /**
17 17
      * @param StoreJobBusinessCaseInterface $oStoreJob
18 18
      * @return
19
-     */
19
+     void
20 20
     public function addBusinesCase(StoreJobBusinessCaseInterface $oStoreJob);
21 21
 
22 22
     /**
Please login to merge, or discard this patch.