@@ -19,7 +19,6 @@ |
||
19 | 19 | use Youshido\GraphQL\Type\Scalar\IntType; |
20 | 20 | use Youshido\GraphQL\Type\Scalar\StringType; |
21 | 21 | use Youshido\GraphQL\Type\TypeInterface; |
22 | -use Youshido\GraphQL\Type\Union\UnionType; |
|
23 | 22 | |
24 | 23 | /** |
25 | 24 | * A query provider that looks for queries in a "controller" |
@@ -3,7 +3,6 @@ |
||
3 | 3 | |
4 | 4 | namespace TheCodingMachine\GraphQL\Controllers; |
5 | 5 | |
6 | -use TheCodingMachine\GraphQL\Controllers\Registry\Registry; |
|
7 | 6 | use Youshido\GraphQL\Execution\ResolveInfo; |
8 | 7 | use Youshido\GraphQL\Field\AbstractField; |
9 | 8 | use Youshido\GraphQL\Type\AbstractType; |
@@ -3,7 +3,6 @@ discard block |
||
3 | 3 | namespace TheCodingMachine\GraphQL\Controllers; |
4 | 4 | |
5 | 5 | use Doctrine\Common\Annotations\AnnotationReader; |
6 | -use PHPUnit\Framework\TestCase; |
|
7 | 6 | use TheCodingMachine\GraphQL\Controllers\Fixtures\TestController; |
8 | 7 | use TheCodingMachine\GraphQL\Controllers\Fixtures\TestObject; |
9 | 8 | use TheCodingMachine\GraphQL\Controllers\Security\VoidAuthenticationService; |
@@ -12,13 +11,11 @@ discard block |
||
12 | 11 | use Youshido\GraphQL\Type\InputObject\InputObjectType; |
13 | 12 | use Youshido\GraphQL\Type\ListType\ListType; |
14 | 13 | use Youshido\GraphQL\Type\NonNullType; |
15 | -use Youshido\GraphQL\Type\Object\ObjectType; |
|
16 | 14 | use Youshido\GraphQL\Type\Scalar\BooleanType; |
17 | 15 | use Youshido\GraphQL\Type\Scalar\DateTimeType; |
18 | 16 | use Youshido\GraphQL\Type\Scalar\FloatType; |
19 | 17 | use Youshido\GraphQL\Type\Scalar\IntType; |
20 | 18 | use Youshido\GraphQL\Type\Scalar\StringType; |
21 | -use Youshido\GraphQL\Type\TypeInterface; |
|
22 | 19 | use TheCodingMachine\GraphQL\Controllers\Annotations\Query; |
23 | 20 | |
24 | 21 | class ControllerQueryProviderTest extends AbstractQueryProviderTest |