@@ -24,7 +24,6 @@ |
||
| 24 | 24 | use Youshido\GraphQL\Parser\Ast\Interfaces\FieldInterface as AstFieldInterface; |
| 25 | 25 | use Youshido\GraphQL\Parser\Ast\Mutation as AstMutation; |
| 26 | 26 | use Youshido\GraphQL\Parser\Ast\Query as AstQuery; |
| 27 | -use Youshido\GraphQL\Parser\Ast\Query; |
|
| 28 | 27 | use Youshido\GraphQL\Parser\Ast\TypedFragmentReference; |
| 29 | 28 | use Youshido\GraphQL\Parser\Parser; |
| 30 | 29 | use Youshido\GraphQL\Schema\AbstractSchema; |
@@ -8,7 +8,6 @@ |
||
| 8 | 8 | namespace Youshido\GraphQL\Execution; |
| 9 | 9 | |
| 10 | 10 | |
| 11 | -use Youshido\GraphQL\Parser\Ast\ArgumentValue\Literal; |
|
| 12 | 11 | use Youshido\GraphQL\Parser\Ast\ArgumentValue\Variable; |
| 13 | 12 | use Youshido\GraphQL\Parser\Ast\ArgumentValue\VariableReference; |
| 14 | 13 | use Youshido\GraphQL\Parser\Ast\Fragment; |
@@ -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]); |