Test Failed
Pull Request — master (#19)
by David
02:44
created
src/ControllerQueryProvider.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
tests/ControllerQueryProviderTest.php 1 patch
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -2,24 +2,18 @@
 block discarded – undo
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
Please login to merge, or discard this patch.