@@ -208,7 +208,7 @@ |
||
| 208 | 208 | } |
| 209 | 209 | |
| 210 | 210 | $this->variables = $variables; |
| 211 | - foreach($this->variableReferences as $reference) { |
|
| 211 | + foreach ($this->variableReferences as $reference) { |
|
| 212 | 212 | /** invalid request with no variable */ |
| 213 | 213 | if (!$reference->getVariable()) continue; |
| 214 | 214 | $variableName = $reference->getVariable()->getName(); |
@@ -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]); |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | ] |
| 41 | 41 | ] |
| 42 | 42 | ]), |
| 43 | - 'resolve' => function ($source, array $args, ResolveInfo $info) { |
|
| 43 | + 'resolve' => function($source, array $args, ResolveInfo $info) { |
|
| 44 | 44 | $internalArgs = [ |
| 45 | 45 | 'comment_id' => 200 |
| 46 | 46 | ]; |