Completed
Push — master ( 5231d5...f954c7 )
by Alexandr
04:05 queued 01:38
created
src/Field/AbstractInputField.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,6 @@
 block discarded – undo
9 9
 
10 10
 
11 11
 use Youshido\GraphQL\Config\Field\InputFieldConfig;
12
-use Youshido\GraphQL\Config\Traits\ResolvableObjectTrait;
13
-use Youshido\GraphQL\Type\InputObject\AbstractInputObjectType;
14 12
 use Youshido\GraphQL\Type\InputTypeInterface;
15 13
 use Youshido\GraphQL\Type\Traits\AutoNameTrait;
16 14
 use Youshido\GraphQL\Type\Traits\FieldsArgumentsAwareObjectTrait;
Please login to merge, or discard this patch.
src/Validator/ConfigValidator/Rules/TypeValidationRule.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 namespace Youshido\GraphQL\Validator\ConfigValidator\Rules;
10 10
 
11 11
 
12
-use Youshido\GraphQL\Field\AbstractInputField;
13 12
 use Youshido\GraphQL\Field\FieldInterface;
14 13
 use Youshido\GraphQL\Field\InputFieldInterface;
15 14
 use Youshido\GraphQL\Type\AbstractType;
Please login to merge, or discard this patch.
Tests/Schema/FragmentsTest.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,14 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Youshido\Tests\Schema;
4 4
 
5
-use Youshido\GraphQL\Config\Object\InterfaceTypeConfig;
6
-use Youshido\GraphQL\Config\Object\ObjectTypeConfig;
7 5
 use Youshido\GraphQL\Execution\Processor;
8 6
 use Youshido\GraphQL\Schema\Schema;
9 7
 use Youshido\GraphQL\Type\InterfaceType\AbstractInterfaceType;
10
-use Youshido\GraphQL\Type\InterfaceType\InterfaceType;
11 8
 use Youshido\GraphQL\Type\ListType\ListType;
12
-use Youshido\GraphQL\Type\NonNullType;
13 9
 use Youshido\GraphQL\Type\Object\AbstractObjectType;
14 10
 use Youshido\GraphQL\Type\Object\ObjectType;
15 11
 use Youshido\GraphQL\Type\Scalar\IdType;
Please login to merge, or discard this patch.
src/Execution/Processor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Introspection/SchemaType.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,6 @@
 block discarded – undo
12 12
 use Youshido\GraphQL\Schema\AbstractSchema;
13 13
 use Youshido\GraphQL\Type\ListType\ListType;
14 14
 use Youshido\GraphQL\Type\Object\AbstractObjectType;
15
-use Youshido\GraphQL\Type\Object\ObjectType;
16
-use Youshido\GraphQL\Type\TypeMap;
17 15
 
18 16
 class SchemaType extends AbstractObjectType
19 17
 {
Please login to merge, or discard this patch.
Tests/Library/Type/InputObjectTypeTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 
11 11
 
12 12
 use Youshido\GraphQL\Execution\Processor;
13
-use Youshido\GraphQL\Parser\Ast\ArgumentValue\InputObject;
14 13
 use Youshido\GraphQL\Schema\Schema;
15 14
 use Youshido\GraphQL\Type\InputObject\InputObjectType;
16 15
 use Youshido\GraphQL\Type\ListType\ListType;
Please login to merge, or discard this patch.
src/Execution/Request.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -8,14 +8,12 @@
 block discarded – undo
8 8
 namespace Youshido\GraphQL\Execution;
9 9
 
10 10
 use Youshido\GraphQL\Exception\Parser\InvalidRequestException;
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;
15 14
 use Youshido\GraphQL\Parser\Ast\FragmentReference;
16 15
 use Youshido\GraphQL\Parser\Ast\Mutation;
17 16
 use Youshido\GraphQL\Parser\Ast\Query;
18
-use Youshido\GraphQL\Parser\Location;
19 17
 
20 18
 class Request
21 19
 {
Please login to merge, or discard this patch.
src/Schema/AbstractSchema.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -10,9 +10,7 @@
 block discarded – undo
10 10
 
11 11
 
12 12
 use Youshido\GraphQL\Config\Schema\SchemaConfig;
13
-use Youshido\GraphQL\Type\Object\ObjectType;
14 13
 use Youshido\GraphQL\Type\SchemaTypesList;
15
-use Youshido\GraphQL\Type\TypeInterface;
16 14
 use Youshido\GraphQL\Type\SchemaDirectivesList;
17 15
 
18 16
 abstract class AbstractSchema
Please login to merge, or discard this patch.