Completed
Push — master ( b2a65d...63a169 )
by Kirill
02:18
created
src/Frontend/Builder/Value/StringValueBuilder.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
      * @param ContextInterface $ctx
45 45
      * @param RuleInterface $rule
46
-     * @return mixed|Value
46
+     * @return ValueInterface
47 47
      */
48 48
     public function reduce(ContextInterface $ctx, RuleInterface $rule): ValueInterface
49 49
     {
Please login to merge, or discard this patch.
src/Frontend/Builder/Value/TypeInvocationBuilder.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     /**
38 38
      * @param ContextInterface $ctx
39 39
      * @param RuleInterface $rule
40
-     * @return \Generator|InvocationInterface
40
+     * @return \Generator
41 41
      * @throws TypeConflictException
42 42
      */
43 43
     public function reduce(ContextInterface $ctx, RuleInterface $rule): \Generator
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     /**
69 69
      * @param ContextInterface $ctx
70
-     * @param TypeNameInterface|ValueInterface $name
70
+     * @param ValueInterface $name
71 71
      * @return InvocationInterface
72 72
      */
73 73
     private function resolveName(ContextInterface $ctx, $name): InvocationInterface
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     /**
96 96
      * @param ContextInterface $ctx
97 97
      * @param RuleInterface $rule
98
-     * @return \Generator|TypeNameInterface
98
+     * @return \Generator
99 99
      * @throws TypeConflictException
100 100
      */
101 101
     private function fetchArgumentName(ContextInterface $ctx, RuleInterface $rule): \Generator
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     /**
124 124
      * @param ContextInterface $ctx
125 125
      * @param RuleInterface $rule
126
-     * @return \Generator|ValueInterface
126
+     * @return \Generator
127 127
      */
128 128
     private function fetchArgumentValue(ContextInterface $ctx, RuleInterface $rule): \Generator
129 129
     {
Please login to merge, or discard this patch.
src/Frontend/Deferred/Deferred.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 
46 46
     /**
47 47
      * @param mixed ...$args
48
-     * @return \Generator|mixed
48
+     * @return \Generator
49 49
      */
50 50
     public function __invoke(...$args)
51 51
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
     /**
56 56
      * @param array $args
57
-     * @return \Generator|mixed
57
+     * @return \Generator
58 58
      */
59 59
     public function invoke(...$args): \Generator
60 60
     {
Please login to merge, or discard this patch.
src/Frontend/Deferred/Storage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     }
50 50
 
51 51
     /**
52
-     * @return iterable|\Generator
52
+     * @return \Generator
53 53
      */
54 54
     public function getIterator(): iterable
55 55
     {
Please login to merge, or discard this patch.
src/Frontend/Definition/Storage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
 
145 145
     /**
146 146
      * @param \Closure $filter
147
-     * @return \Generator|DeferredInterface[]
147
+     * @return \Generator
148 148
      */
149 149
     public function export(\Closure $filter): \Generator
150 150
     {
Please login to merge, or discard this patch.
src/Process/Process.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
     }
66 66
 
67 67
     /**
68
-     * @return iterable|DeferredInterface[]
68
+     * @return \Generator
69 69
      */
70 70
     private function getDeferredResolvers(): iterable
71 71
     {
Please login to merge, or discard this patch.