@@ -54,7 +54,7 @@ |
||
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | |
| 57 | - protected function preCompareModifications(JobEntityInterface &$oLocalJob, JobEntityInterface &$oRemoteJob) |
|
| 57 | + protected function preCompareModifications(JobEntityInterface & $oLocalJob, JobEntityInterface & $oRemoteJob) |
|
| 58 | 58 | { |
| 59 | 59 | // no modification needed |
| 60 | 60 | return; |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | $_aDifferences[$_sProperty] = $this->oDiffCompare->compare( |
| 167 | 167 | $_oRemoteEntity->{$_sProperty}, |
| 168 | 168 | $_oLocalEntity->{$_sProperty} |
| 169 | - ) ; |
|
| 169 | + ); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | return $_aDifferences; |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | * @param JobEntityInterface $oRemoteJob |
| 220 | 220 | * @return null |
| 221 | 221 | */ |
| 222 | - abstract protected function preCompareModifications(JobEntityInterface &$oLocalJob, JobEntityInterface &$oRemoteJob); |
|
| 222 | + abstract protected function preCompareModifications(JobEntityInterface & $oLocalJob, JobEntityInterface & $oRemoteJob); |
|
| 223 | 223 | |
| 224 | 224 | /** |
| 225 | 225 | * Gets entity for each system with defaults set |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | // check if dependency is satisfied |
| 75 | - if ( $_oJobEntityLocal->isDependencyJob()) |
|
| 75 | + if ($_oJobEntityLocal->isDependencyJob()) |
|
| 76 | 76 | { |
| 77 | 77 | try { |
| 78 | 78 | $circular = $this->isDependencyCircular($_oJobEntityLocal, count($_oJobEntityLocal->dependencies)); |
@@ -84,10 +84,10 @@ discard block |
||
| 84 | 84 | return false; |
| 85 | 85 | } |
| 86 | 86 | } |
| 87 | - catch(\Exception $e) |
|
| 87 | + catch (\Exception $e) |
|
| 88 | 88 | { |
| 89 | 89 | $this->oLogger->error(sprintf( |
| 90 | - 'Job %s cannot be added to remote : %s',$sAppId, $e->getMessage() |
|
| 90 | + 'Job %s cannot be added to remote : %s', $sAppId, $e->getMessage() |
|
| 91 | 91 | )); |
| 92 | 92 | return false; |
| 93 | 93 | } |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | return !(count($arr) == count(array_unique($arr))); |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - private function isDependencyCircular(MarathonAppEntity $oEntity, $iImmediateChildren, &$path=[]) |
|
| 136 | + private function isDependencyCircular(MarathonAppEntity $oEntity, $iImmediateChildren, &$path = []) |
|
| 137 | 137 | { |
| 138 | 138 | // Invariant: path will not have duplicates for acyclic dependency tree |
| 139 | 139 | if ($this->hasDuplicates($path)) |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | // for B intermediate Child will be 2. |
| 187 | 187 | // when we process D, it will be reduced to 1 and with C to 0 |
| 188 | 188 | // then we will pop B to generate path [A, E] when we reach E. |
| 189 | - $iImmediateChildren = $iImmediateChildren -1; |
|
| 189 | + $iImmediateChildren = $iImmediateChildren - 1; |
|
| 190 | 190 | if ($iImmediateChildren == 0) |
| 191 | 191 | { |
| 192 | 192 | array_pop($path); |
@@ -165,7 +165,7 @@ discard block |
||
| 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 |
||
| 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 | { |