@@ -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; |
@@ -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 | { |
@@ -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; |