@@ -223,6 +223,9 @@ discard block |
||
| 223 | 223 | return $this; |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | + /** |
|
| 227 | + * @param string $name |
|
| 228 | + */ |
|
| 226 | 229 | public function getVariable($name) |
| 227 | 230 | { |
| 228 | 231 | return $this->hasVariable($name) ? $this->variables[$name] : null; |
@@ -266,7 +269,7 @@ discard block |
||
| 266 | 269 | } |
| 267 | 270 | |
| 268 | 271 | /** |
| 269 | - * @return array|VariableReference[] |
|
| 272 | + * @return VariableReference[] |
|
| 270 | 273 | */ |
| 271 | 274 | public function getVariableReferences() |
| 272 | 275 | { |
@@ -210,11 +210,15 @@ |
||
| 210 | 210 | $this->variables = $variables; |
| 211 | 211 | foreach($this->variableReferences as $reference) { |
| 212 | 212 | /** invalid request with no variable */ |
| 213 | - if (!$reference->getVariable()) continue; |
|
| 213 | + if (!$reference->getVariable()) { |
|
| 214 | + continue; |
|
| 215 | + } |
|
| 214 | 216 | $variableName = $reference->getVariable()->getName(); |
| 215 | 217 | |
| 216 | 218 | /** no variable was set at the time */ |
| 217 | - if (!array_key_exists($variableName, $variables)) continue; |
|
| 219 | + if (!array_key_exists($variableName, $variables)) { |
|
| 220 | + continue; |
|
| 221 | + } |
|
| 218 | 222 | |
| 219 | 223 | $reference->getVariable()->setValue($variables[$variableName]); |
| 220 | 224 | $reference->setValue($variables[$variableName]); |