Completed
Push — master ( 3474c6...7552ea )
by Alexandr
02:54
created
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/NonNullableTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@  discard block
 block discarded – undo
20 20
 {
21 21
     private $uid;
22 22
 
23
+    /**
24
+     * @param string $uid
25
+     */
23 26
     public function __construct($uid)
24 27
     {
25 28
         $this->uid = $uid;
@@ -34,6 +37,9 @@  discard block
 block discarded – undo
34 37
 class uid {
35 38
     private $uid;
36 39
 
40
+    /**
41
+     * @param string $uid
42
+     */
37 43
     public function __construct($uid)
38 44
     {
39 45
         $this->uid = $uid;
Please login to merge, or discard this patch.