Completed
Push — master ( 461e07...b4459a )
by Alexandr
03:37
created
examples/02_blog_inline/inline-schema.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace BlogTest;
3 3
 
4
-use Youshido\GraphQL\Type\NonNullType;
5 4
 use Youshido\GraphQL\Type\Object\ObjectType;
6 5
 use Youshido\GraphQL\Type\Scalar\BooleanType;
7 6
 use Youshido\GraphQL\Type\Scalar\IntType;
Please login to merge, or discard this patch.
src/Type/Config/Schema/SchemaConfig.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 use Youshido\GraphQL\Type\Config\Config;
13 13
 use Youshido\GraphQL\Type\Object\AbstractObjectType;
14
-use Youshido\GraphQL\Type\Object\InputObjectType;
15 14
 use Youshido\GraphQL\Type\Object\ObjectType;
16 15
 use Youshido\GraphQL\Type\TypeMap;
17 16
 
Please login to merge, or discard this patch.
src/Validator/ConfigValidator/Rules/TypeValidationRule.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -11,15 +11,10 @@
 block discarded – undo
11 11
 
12 12
 use Youshido\GraphQL\Type\AbstractType;
13 13
 use Youshido\GraphQL\Type\Config\Field\FieldConfig;
14
-use Youshido\GraphQL\Type\Config\Field\InputFieldConfig;
15 14
 use Youshido\GraphQL\Type\Field\Field;
16 15
 use Youshido\GraphQL\Type\Field\InputField;
17
-use Youshido\GraphQL\Type\Object\AbstractEnumType;
18 16
 use Youshido\GraphQL\Type\Object\AbstractInputObjectType;
19
-use Youshido\GraphQL\Type\Object\AbstractInterfaceType;
20 17
 use Youshido\GraphQL\Type\Object\AbstractObjectType;
21
-use Youshido\GraphQL\Type\Object\AbstractUnionType;
22
-use Youshido\GraphQL\Type\Scalar\AbstractScalarType;
23 18
 use Youshido\GraphQL\Type\TypeMap;
24 19
 use Youshido\GraphQL\Validator\Exception\ConfigurationException;
25 20
 
Please login to merge, or discard this patch.
examples/02_blog/Schema/LikePost.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 namespace Examples\Blog\Schema;
7 7
 
8 8
 
9
-use Youshido\GraphQL\Type\Config\TypeConfigInterface;
10 9
 use Youshido\GraphQL\Type\NonNullType;
11 10
 use Youshido\GraphQL\Type\Object\AbstractObjectType;
12 11
 use Youshido\GraphQL\Type\Scalar\IntType;
Please login to merge, or discard this patch.
src/Type/ListType/AbstractListType.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
 use Youshido\GraphQL\Type\CompositeTypeInterface;
12 12
 use Youshido\GraphQL\Type\Config\Object\ListTypeConfig;
13
-use Youshido\GraphQL\Type\Config\TypeConfigInterface;
14 13
 use Youshido\GraphQL\Type\Object\AbstractObjectType;
15 14
 use Youshido\GraphQL\Type\TypeMap;
16 15
 
Please login to merge, or discard this patch.
src/Type/NonNullType.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,6 @@
 block discarded – undo
9 9
 namespace Youshido\GraphQL\Type;
10 10
 
11 11
 
12
-use Youshido\GraphQL\Type\Config\TypeConfigInterface;
13
-
14 12
 class NonNullType extends AbstractType implements CompositeTypeInterface
15 13
 {
16 14
     private $_typeOf;
Please login to merge, or discard this patch.
src/Type/Object/AbstractInterfaceType.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 use Youshido\GraphQL\Type\AbstractType;
13 13
 use Youshido\GraphQL\Type\Config\Object\InterfaceTypeConfig;
14 14
 use Youshido\GraphQL\Type\Config\Traits\ConfigCallTrait;
15
-use Youshido\GraphQL\Type\Config\TypeConfigInterface;
16 15
 use Youshido\GraphQL\Type\Traits\AutoNameTrait;
17 16
 use Youshido\GraphQL\Type\TypeMap;
18 17
 
Please login to merge, or discard this patch.
src/Type/Object/AbstractUnionType.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 use Youshido\GraphQL\Type\AbstractType;
13 13
 use Youshido\GraphQL\Type\Config\Object\UnionTypeConfig;
14 14
 use Youshido\GraphQL\Type\Config\Traits\ConfigCallTrait;
15
-use Youshido\GraphQL\Type\Config\TypeConfigInterface;
16 15
 use Youshido\GraphQL\Type\Traits\AutoNameTrait;
17 16
 use Youshido\GraphQL\Type\TypeMap;
18 17
 
Please login to merge, or discard this patch.