@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | class InputValueNode extends Rule implements ValueInterface, CompositeValueInterface |
19 | 19 | { |
20 | 20 | /** |
21 | - * @return iterable |
|
21 | + * @return \Generator |
|
22 | 22 | */ |
23 | 23 | public function toPrimitive(): iterable |
24 | 24 | { |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
31 | - * @return iterable|ValueInterface[] |
|
31 | + * @return \Generator |
|
32 | 32 | */ |
33 | 33 | public function getValues(): iterable |
34 | 34 | { |
@@ -11,7 +11,6 @@ |
||
11 | 11 | |
12 | 12 | use Railt\Io\Readable; |
13 | 13 | use Railt\Parser\Ast\RuleInterface; |
14 | -use Railt\Parser\Exception\UnexpectedTokenException; |
|
15 | 14 | use Railt\Parser\Exception\UnrecognizedTokenException; |
16 | 15 | use Railt\Reflection\Contracts\Definition; |
17 | 16 | use Railt\Reflection\Contracts\Dictionary; |
@@ -17,7 +17,7 @@ |
||
17 | 17 | trait DirectivesProvider |
18 | 18 | { |
19 | 19 | /** |
20 | - * @return iterable|DirectiveNode[] |
|
20 | + * @return \Generator |
|
21 | 21 | */ |
22 | 22 | public function getDirectives(): iterable |
23 | 23 | { |
@@ -40,7 +40,7 @@ |
||
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
43 | - * @return null|ValueInterface|NodeInterface |
|
43 | + * @return ValueInterface|null |
|
44 | 44 | */ |
45 | 45 | public function getDefaultValue(): ?ValueInterface |
46 | 46 | { |
@@ -40,7 +40,7 @@ |
||
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
43 | - * @return iterable|DirectiveArgumentNode[] |
|
43 | + * @return \Generator |
|
44 | 44 | */ |
45 | 45 | public function getDirectiveArguments(): iterable |
46 | 46 | { |
@@ -39,7 +39,7 @@ |
||
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | - * @return iterable|ArgumentDefinitionNode[] |
|
42 | + * @return \Generator |
|
43 | 43 | */ |
44 | 44 | public function getArguments(): iterable |
45 | 45 | { |
@@ -10,7 +10,6 @@ |
||
10 | 10 | namespace Railt\SDL\Compiler; |
11 | 11 | |
12 | 12 | use Railt\Parser\Ast\RuleInterface; |
13 | -use Railt\Reflection\Contracts\Dictionary; |
|
14 | 13 | use Railt\Reflection\Document; |
15 | 14 | use Railt\SDL\Compiler\Processor\Definition; |
16 | 15 | use Railt\SDL\Compiler\Processor\Extension; |
@@ -13,7 +13,6 @@ |
||
13 | 13 | use Railt\Reflection\Contracts\Definition\TypeDefinition; |
14 | 14 | use Railt\Reflection\Definition\InputUnionDefinition; |
15 | 15 | use Railt\SDL\Compiler\Ast\Definition\InputUnionDefinitionNode; |
16 | -use Railt\SDL\Compiler\Processor\BaseProcessor; |
|
17 | 16 | |
18 | 17 | /** |
19 | 18 | * Class InputUnionProcessor |
@@ -13,7 +13,6 @@ |
||
13 | 13 | use Railt\Reflection\Contracts\Definition\TypeDefinition; |
14 | 14 | use Railt\Reflection\Definition\ObjectDefinition; |
15 | 15 | use Railt\SDL\Compiler\Ast\Definition\ObjectDefinitionNode; |
16 | -use Railt\SDL\Compiler\Processor\BaseProcessor; |
|
17 | 16 | |
18 | 17 | /** |
19 | 18 | * Class DirectiveDefinition |