@@ -3,26 +3,11 @@ |
||
3 | 3 | |
4 | 4 | namespace TheCodingMachine\GraphQL\Controllers; |
5 | 5 | |
6 | -use phpDocumentor\Reflection\Type; |
|
7 | -use phpDocumentor\Reflection\Types\Array_; |
|
8 | -use phpDocumentor\Reflection\Types\Mixed; |
|
9 | -use phpDocumentor\Reflection\Types\Object_; |
|
10 | -use phpDocumentor\Reflection\Types\String_; |
|
11 | 6 | use Psr\Container\ContainerInterface; |
12 | -use Roave\BetterReflection\Reflection\ReflectionClass; |
|
13 | -use Roave\BetterReflection\Reflection\ReflectionMethod; |
|
14 | 7 | use Doctrine\Common\Annotations\Reader; |
15 | -use phpDocumentor\Reflection\Types\Integer; |
|
16 | -use TheCodingMachine\GraphQL\Controllers\Annotations\Query; |
|
17 | 8 | use TheCodingMachine\GraphQL\Controllers\Security\AuthenticationServiceInterface; |
18 | 9 | use TheCodingMachine\GraphQL\Controllers\Security\AuthorizationServiceInterface; |
19 | 10 | use Youshido\GraphQL\Field\Field; |
20 | -use Youshido\GraphQL\Type\ListType\ListType; |
|
21 | -use Youshido\GraphQL\Type\NonNullType; |
|
22 | -use Youshido\GraphQL\Type\Scalar\IntType; |
|
23 | -use Youshido\GraphQL\Type\Scalar\StringType; |
|
24 | -use Youshido\GraphQL\Type\TypeInterface; |
|
25 | -use Youshido\GraphQL\Type\Union\UnionType; |
|
26 | 11 | |
27 | 12 | /** |
28 | 13 | * A query provider that looks into all controllers of your application to fetch queries. |