Completed
Push — master ( 2555c1...347de5 )
by Sebastian
03:02
created
src/Executor/Executor.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Fubhy\GraphQL\Language\Node;
6 6
 use Fubhy\GraphQL\Language\Node\Document;
7 7
 use Fubhy\GraphQL\Language\Node\Field;
8
-use Fubhy\GraphQL\Language\Node\FragmentDefinition;
9 8
 use Fubhy\GraphQL\Language\Node\OperationDefinition;
10 9
 use Fubhy\GraphQL\Language\Node\SelectionSet;
11 10
 use Fubhy\GraphQL\Schema;
Please login to merge, or discard this patch.
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -83,9 +83,9 @@  discard block
 block discarded – undo
83 83
      * @param Schema $schema
84 84
      * @param $root
85 85
      * @param Document $ast
86
-     * @param null $operationName
86
+     * @param string|null $operationName
87 87
      * @param array $args
88
-     * @param $errors
88
+     * @param \ArrayObject $errors
89 89
      *
90 90
      * @return ExecutionContext
91 91
      *
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
      * @param ExecutionContext $context
191 191
      * @param ObjectType $parent
192 192
      * @param $source
193
-     * @param $fields
193
+     * @param \ArrayObject $fields
194 194
      *
195 195
      * @return array
196 196
      */
@@ -206,8 +206,8 @@  discard block
 block discarded – undo
206 206
      * @param ExecutionContext $context
207 207
      * @param ObjectType $type
208 208
      * @param SelectionSet $set
209
-     * @param $fields
210
-     * @param $visited
209
+     * @param \ArrayObject $fields
210
+     * @param \ArrayObject $visited
211 211
      *
212 212
      * @return \ArrayObject
213 213
      */
Please login to merge, or discard this patch.
src/Language/Parser.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
      * @param callable $parseFn
209 209
      * @param int $closeKind
210 210
      *
211
-     * @return array
211
+     * @return Node\ValueInterface[]
212 212
      */
213 213
     protected function any($openKind, $parseFn, $closeKind)
214 214
     {
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
      * @param callable $parseFn
234 234
      * @param int $closeKind
235 235
      *
236
-     * @return array
236
+     * @return Node\SelectionInterface[]
237 237
      */
238 238
     protected function many($openKind, $parseFn, $closeKind)
239 239
     {
Please login to merge, or discard this patch.