@@ -27,7 +27,7 @@ |
||
27 | 27 | */ |
28 | 28 | public static function setAllPossibleProperties($oData, $oTarget) |
29 | 29 | { |
30 | - foreach($oData as $attrName => $attrValue) |
|
30 | + foreach ($oData as $attrName => $attrValue) |
|
31 | 31 | { |
32 | 32 | // dont set array or objects. |
33 | 33 | // Because this would need further type information to properly 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 | // NOTE: only gets the first one. |
81 | 81 | // does it make sense? |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | } |
100 | 100 | /** @var JobComparisonInterface $comparer */ |
101 | 101 | $comparer = null; |
102 | - foreach($this->aComposites as $child) |
|
102 | + foreach ($this->aComposites as $child) |
|
103 | 103 | { |
104 | 104 | if ($child->isJobAvailable($oJobEntityA->getKey())) |
105 | 105 | { |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | */ |
124 | 124 | public function isJobAvailable($sJobName) |
125 | 125 | { |
126 | - foreach($this->aComposites as $child) { |
|
126 | + foreach ($this->aComposites as $child) { |
|
127 | 127 | if ($child->isJobAvailable($sJobName)) |
128 | 128 | { |
129 | 129 | return true; |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | $_sJobPath = $oJobEntity->getKey(); |
162 | 162 | } |
163 | 163 | |
164 | - return $this->sRepositoryDir . DIRECTORY_SEPARATOR . $_sJobPath . '.json'; |
|
164 | + return $this->sRepositoryDir.DIRECTORY_SEPARATOR.$_sJobPath.'.json'; |
|
165 | 165 | } |
166 | 166 | |
167 | 167 | /** |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | throw new \RuntimeException(sprintf('Path "%s" is not valid', $sPath)); |
177 | 177 | } |
178 | 178 | |
179 | - $_aTemp = Glob::glob(rtrim($sPath, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . '*'); |
|
179 | + $_aTemp = Glob::glob(rtrim($sPath, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.'*'); |
|
180 | 180 | |
181 | 181 | foreach ($_aTemp as $_sPath) |
182 | 182 | { |
@@ -23,12 +23,12 @@ |
||
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 | } |
@@ -35,14 +35,14 @@ |
||
35 | 35 | |
36 | 36 | if (isset($aData['docker'])) |
37 | 37 | { |
38 | - $this->docker = new Docker((array)$aData['docker']); |
|
38 | + $this->docker = new Docker((array) $aData['docker']); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | if (isset($aData['volumes'])) |
42 | 42 | { |
43 | 43 | foreach ($aData['volumes'] as $volume) |
44 | 44 | { |
45 | - $this->volumes[] = new ContainerVolume((array)$volume); |
|
45 | + $this->volumes[] = new ContainerVolume((array) $volume); |
|
46 | 46 | } |
47 | 47 | } |
48 | 48 |
@@ -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 |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | /** |
34 | 34 | * @var PortDefinition[] |
35 | 35 | */ |
36 | - public $portDefinitions =[]; |
|
36 | + public $portDefinitions = []; |
|
37 | 37 | |
38 | 38 | public $requirePorts = false; |
39 | 39 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | /** |
52 | 52 | * @var array |
53 | 53 | */ |
54 | - public $constraints = []; |
|
54 | + public $constraints = []; |
|
55 | 55 | |
56 | 56 | |
57 | 57 | public $acceptedResourceRoles = []; |
@@ -101,39 +101,39 @@ discard block |
||
101 | 101 | |
102 | 102 | if (isset($aData['portDefinitions'])) { |
103 | 103 | foreach ($aData['portDefinitions'] as $portDefinition) { |
104 | - $this->portDefinitions[] = new PortDefinition((array)$portDefinition); |
|
104 | + $this->portDefinitions[] = new PortDefinition((array) $portDefinition); |
|
105 | 105 | } |
106 | 106 | } |
107 | 107 | |
108 | 108 | if (isset($aData['container'])) { |
109 | - $this->container = new Container((array)$aData['container']); |
|
109 | + $this->container = new Container((array) $aData['container']); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | if (isset($aData['healthChecks'])) |
113 | 113 | { |
114 | - foreach($aData['healthChecks'] as $healthCheck) |
|
114 | + foreach ($aData['healthChecks'] as $healthCheck) |
|
115 | 115 | { |
116 | - $this->healthChecks[] = new HealthCheck((array)$healthCheck); |
|
116 | + $this->healthChecks[] = new HealthCheck((array) $healthCheck); |
|
117 | 117 | } |
118 | 118 | } |
119 | 119 | |
120 | 120 | if (isset($aData['upgradeStrategy'])) |
121 | 121 | { |
122 | - $this->upgradeStrategy = new UpgradeStrategy((array)$aData['upgradeStrategy']); |
|
122 | + $this->upgradeStrategy = new UpgradeStrategy((array) $aData['upgradeStrategy']); |
|
123 | 123 | } else { |
124 | 124 | $this->upgradeStrategy = new UpgradeStrategy(); |
125 | 125 | } |
126 | 126 | |
127 | 127 | if (isset($aData['ipAddress'])) |
128 | 128 | { |
129 | - $this->ipAddress = new IpAddress((array)$aData['ipAddress']); |
|
129 | + $this->ipAddress = new IpAddress((array) $aData['ipAddress']); |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | if (isset($aData['env'])) |
133 | 133 | { |
134 | - $this->env = (object) $aData['env']; |
|
134 | + $this->env = (object) $aData['env']; |
|
135 | 135 | } else { |
136 | - $this->env = (object)[]; |
|
136 | + $this->env = (object) []; |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | if (isset($aData['labels'])) |