@@ -10,7 +10,6 @@ discard block |
||
10 | 10 | use phpDocumentor\Reflection\Types\Mixed_; |
11 | 11 | use phpDocumentor\Reflection\Types\Object_; |
12 | 12 | use phpDocumentor\Reflection\Types\String_; |
13 | -use Psr\Container\ContainerInterface; |
|
14 | 13 | use Roave\BetterReflection\Reflection\ReflectionClass; |
15 | 14 | use Roave\BetterReflection\Reflection\ReflectionMethod; |
16 | 15 | use Doctrine\Common\Annotations\Reader; |
@@ -21,8 +20,6 @@ discard block |
||
21 | 20 | use TheCodingMachine\GraphQL\Controllers\Annotations\Query; |
22 | 21 | use TheCodingMachine\GraphQL\Controllers\Annotations\Right; |
23 | 22 | use TheCodingMachine\GraphQL\Controllers\Reflection\CommentParser; |
24 | -use TheCodingMachine\GraphQL\Controllers\Registry\EmptyContainer; |
|
25 | -use TheCodingMachine\GraphQL\Controllers\Registry\Registry; |
|
26 | 23 | use TheCodingMachine\GraphQL\Controllers\Registry\RegistryInterface; |
27 | 24 | use TheCodingMachine\GraphQL\Controllers\Security\AuthenticationServiceInterface; |
28 | 25 | use TheCodingMachine\GraphQL\Controllers\Security\AuthorizationServiceInterface; |
@@ -2,24 +2,18 @@ |
||
2 | 2 | |
3 | 3 | namespace TheCodingMachine\GraphQL\Controllers; |
4 | 4 | |
5 | -use Doctrine\Common\Annotations\AnnotationReader; |
|
6 | -use PHPUnit\Framework\TestCase; |
|
7 | 5 | use TheCodingMachine\GraphQL\Controllers\Fixtures\TestController; |
8 | 6 | use TheCodingMachine\GraphQL\Controllers\Fixtures\TestObject; |
9 | 7 | use TheCodingMachine\GraphQL\Controllers\Fixtures\TestType; |
10 | -use TheCodingMachine\GraphQL\Controllers\Security\VoidAuthenticationService; |
|
11 | -use TheCodingMachine\GraphQL\Controllers\Security\VoidAuthorizationService; |
|
12 | 8 | use Youshido\GraphQL\Execution\ResolveInfo; |
13 | 9 | use Youshido\GraphQL\Type\InputObject\InputObjectType; |
14 | 10 | use Youshido\GraphQL\Type\ListType\ListType; |
15 | 11 | use Youshido\GraphQL\Type\NonNullType; |
16 | -use Youshido\GraphQL\Type\Object\ObjectType; |
|
17 | 12 | use Youshido\GraphQL\Type\Scalar\BooleanType; |
18 | 13 | use Youshido\GraphQL\Type\Scalar\DateTimeType; |
19 | 14 | use Youshido\GraphQL\Type\Scalar\FloatType; |
20 | 15 | use Youshido\GraphQL\Type\Scalar\IntType; |
21 | 16 | use Youshido\GraphQL\Type\Scalar\StringType; |
22 | -use Youshido\GraphQL\Type\TypeInterface; |
|
23 | 17 | use TheCodingMachine\GraphQL\Controllers\Annotations\Query; |
24 | 18 | |
25 | 19 | class ControllerQueryProviderTest extends AbstractQueryProviderTest |