@@ -39,17 +39,17 @@ |
||
39 | 39 | |
40 | 40 | if (isset($aData['portMappings'])) |
41 | 41 | { |
42 | - foreach($aData['portMappings'] as $portMapping) |
|
42 | + foreach ($aData['portMappings'] as $portMapping) |
|
43 | 43 | { |
44 | - $this->portMappings[] = new DockerPortMapping((array)$portMapping); |
|
44 | + $this->portMappings[] = new DockerPortMapping((array) $portMapping); |
|
45 | 45 | } |
46 | 46 | } |
47 | 47 | |
48 | 48 | if (isset($aData['parameters'])) |
49 | 49 | { |
50 | - foreach($aData['parameters'] as $parameter) |
|
50 | + foreach ($aData['parameters'] as $parameter) |
|
51 | 51 | { |
52 | - $this->parameters[] = new DockerParameters((array)$parameter); |
|
52 | + $this->parameters[] = new DockerParameters((array) $parameter); |
|
53 | 53 | } |
54 | 54 | } |
55 | 55 |
@@ -41,9 +41,9 @@ |
||
41 | 41 | { |
42 | 42 | MarathonEntityUtils::setAllPossibleProperties($aData, $this); |
43 | 43 | |
44 | - if(isset($aData['command'])) |
|
44 | + if (isset($aData['command'])) |
|
45 | 45 | { |
46 | - $this->command = new HealthCheckCommand((array)$aData['command']); |
|
46 | + $this->command = new HealthCheckCommand((array) $aData['command']); |
|
47 | 47 | } |
48 | 48 | } |
49 | 49 |
@@ -25,13 +25,13 @@ |
||
25 | 25 | { |
26 | 26 | MarathonEntityUtils::setAllPossibleProperties($aData, $this); |
27 | 27 | |
28 | - if(isset($aData['groups'])) |
|
28 | + if (isset($aData['groups'])) |
|
29 | 29 | { |
30 | 30 | $this->groups = $aData['groups']; |
31 | 31 | } |
32 | 32 | if (isset($aData['labels'])) |
33 | 33 | { |
34 | - $this->labels = (object)$aData['labels']; |
|
34 | + $this->labels = (object) $aData['labels']; |
|
35 | 35 | } |
36 | 36 | } |
37 | 37 | } |
38 | 38 | \ No newline at end of file |
@@ -37,7 +37,7 @@ |
||
37 | 37 | $this->oDiffCompare = $oDiffCompare; |
38 | 38 | } |
39 | 39 | |
40 | - protected function preCompareModifications(JobEntityInterface &$oLocalJob, JobEntityInterface &$oRemoteJob) |
|
40 | + protected function preCompareModifications(JobEntityInterface & $oLocalJob, JobEntityInterface & $oRemoteJob) |
|
41 | 41 | { |
42 | 42 | if ( |
43 | 43 | !$oLocalJob instanceof MarathonAppEntity || |
@@ -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 |
@@ -34,10 +34,10 @@ discard block |
||
34 | 34 | public function getLocalMissingJobs() |
35 | 35 | { |
36 | 36 | $_aMissingJobs = array(); |
37 | - foreach($this->aComposites as $jobComparers) |
|
37 | + foreach ($this->aComposites as $jobComparers) |
|
38 | 38 | { |
39 | 39 | $missing = $jobComparers->getLocalMissingJobs(); |
40 | - $_aMissingJobs = array_merge($_aMissingJobs, $missing); |
|
40 | + $_aMissingJobs = array_merge($_aMissingJobs, $missing); |
|
41 | 41 | } |
42 | 42 | return $_aMissingJobs; |
43 | 43 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | public function getRemoteMissingJobs() |
49 | 49 | { |
50 | 50 | $_aChronosMissingJobs = array(); |
51 | - foreach($this->aComposites as $jobComparers) |
|
51 | + foreach ($this->aComposites as $jobComparers) |
|
52 | 52 | { |
53 | 53 | $_aChronosMissingJobs = array_merge($_aChronosMissingJobs, $jobComparers->getRemoteMissingJobs()); |
54 | 54 | } |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | public function getLocalJobUpdates() |
62 | 62 | { |
63 | 63 | $_aLocalJobUpdates = array(); |
64 | - foreach($this->aComposites as $jobComparers) |
|
64 | + foreach ($this->aComposites as $jobComparers) |
|
65 | 65 | { |
66 | 66 | $_aLocalJobUpdates = array_merge($_aLocalJobUpdates, $jobComparers->getLocalJobUpdates()); |
67 | 67 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | public function getJobDiff($sJobName) |
76 | 76 | { |
77 | 77 | $_aJobDiffs = array(); |
78 | - foreach($this->aComposites as $jobComparers) |
|
78 | + foreach ($this->aComposites as $jobComparers) |
|
79 | 79 | { |
80 | 80 | // assuming same name won't be in all subsystems. |
81 | 81 | // TODO: add support to handle the duplicate names in different subsystems |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | } |
102 | 102 | /** @var JobComparisonInterface $comparer */ |
103 | 103 | $comparer = null; |
104 | - foreach($this->aComposites as $child) |
|
104 | + foreach ($this->aComposites as $child) |
|
105 | 105 | { |
106 | 106 | if ($child->isJobAvailable($oJobEntityA->getKey())) |
107 | 107 | { |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | */ |
126 | 126 | public function isJobAvailable($sJobName) |
127 | 127 | { |
128 | - foreach($this->aComposites as $child) |
|
128 | + foreach ($this->aComposites as $child) |
|
129 | 129 | { |
130 | 130 | if ($child->isJobAvailable($sJobName)) |
131 | 131 | { |
@@ -23,12 +23,12 @@ discard block |
||
23 | 23 | |
24 | 24 | public function __construct($aData = []) |
25 | 25 | { |
26 | - MarathonEntityUtils::setAllPossibleProperties((array)$aData, $this); |
|
27 | - if(isset($aData['labels'])) |
|
26 | + MarathonEntityUtils::setAllPossibleProperties((array) $aData, $this); |
|
27 | + if (isset($aData['labels'])) |
|
28 | 28 | { |
29 | - $this->labels = (object)$aData['labels']; |
|
29 | + $this->labels = (object) $aData['labels']; |
|
30 | 30 | } else { |
31 | - $this->labels = (object)[]; |
|
31 | + $this->labels = (object) []; |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | } |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | $_aRet = (array) $this; |
42 | 42 | $_aRet = array_filter($_aRet, function($v, $k) { |
43 | 43 | return !is_null($v); |
44 | - }, ARRAY_FILTER_USE_BOTH ); |
|
44 | + }, ARRAY_FILTER_USE_BOTH); |
|
45 | 45 | return $_aRet; |
46 | 46 | } |
47 | 47 | } |
48 | 48 | \ No newline at end of file |
@@ -96,7 +96,7 @@ |
||
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 |