Completed
Push — master ( 4bf010...802657 )
by Kirill
07:20 queued 03:36
created
src/Compiler/Ast/Common/ImplementationsProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 trait ImplementationsProvider
18 18
 {
19 19
     /**
20
-     * @return iterable|TypeNameNode[]
20
+     * @return \Generator
21 21
      */
22 22
     public function getImplementations(): iterable
23 23
     {
Please login to merge, or discard this patch.
src/Compiler/Ast/Definition/DirectiveDefinitionNode.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 class DirectiveDefinitionNode extends TypeDefinitionNode
19 19
 {
20 20
     /**
21
-     * @return iterable|string[]
21
+     * @return \Generator
22 22
      */
23 23
     public function getLocations(): iterable
24 24
     {
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     }
32 32
 
33 33
     /**
34
-     * @return iterable|ArgumentDefinitionNode[]
34
+     * @return \Generator
35 35
      */
36 36
     public function getArguments(): iterable
37 37
     {
Please login to merge, or discard this patch.
src/Compiler/Ast/Definition/EnumDefinitionNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 class EnumDefinitionNode extends TypeDefinitionNode
18 18
 {
19 19
     /**
20
-     * @return iterable|EnumValueDefinitionNode[]
20
+     * @return \Generator
21 21
      */
22 22
     public function getEnumValues(): iterable
23 23
     {
Please login to merge, or discard this patch.
src/Compiler/Ast/Definition/InputDefinitionNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 class InputDefinitionNode extends TypeDefinitionNode
18 18
 {
19 19
     /**
20
-     * @return iterable|InputFieldDefinitionNode[]
20
+     * @return \Generator
21 21
      */
22 22
     public function getInputFields(): iterable
23 23
     {
Please login to merge, or discard this patch.
src/Compiler/Ast/Definition/InputUnionDefinitionNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 class InputUnionDefinitionNode extends TypeDefinitionNode
18 18
 {
19 19
     /**
20
-     * @return iterable|TypeNameNode[]
20
+     * @return \Generator
21 21
      */
22 22
     public function getUnitedTypes(): iterable
23 23
     {
Please login to merge, or discard this patch.
src/Compiler/Ast/Definition/SchemaDefinitionNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 class SchemaDefinitionNode extends TypeDefinitionNode
18 18
 {
19 19
     /**
20
-     * @return iterable|SchemaFieldDefinitionNode[]
20
+     * @return \Generator
21 21
      */
22 22
     public function getSchemaFields(): iterable
23 23
     {
Please login to merge, or discard this patch.
src/Compiler/Ast/Definition/UnionDefinitionNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 class UnionDefinitionNode extends TypeDefinitionNode
18 18
 {
19 19
     /**
20
-     * @return iterable|TypeNameNode[]
20
+     * @return \Generator
21 21
      */
22 22
     public function getUnitedTypes(): iterable
23 23
     {
Please login to merge, or discard this patch.
src/Compiler/Ast/Dependent/ArgumentDefinitionNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     }
44 44
 
45 45
     /**
46
-     * @return null|ValueInterface|NodeInterface
46
+     * @return null|NodeInterface
47 47
      */
48 48
     public function getDefaultValue(): ?ValueInterface
49 49
     {
Please login to merge, or discard this patch.
src/Compiler/Ast/Dependent/EnumValueDefinitionNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     }
42 42
 
43 43
     /**
44
-     * @return null|ValueInterface|NodeInterface
44
+     * @return null|NodeInterface
45 45
      */
46 46
     public function getValue(): ?ValueInterface
47 47
     {
Please login to merge, or discard this patch.