Completed
Push — master ( e8dfcd...40ac65 )
by Alexandr
05:32 queued 02:28
created
src/Config/Traits/ResolvableObjectTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
 
14 14
 trait ResolvableObjectTrait {
15 15
 
16
+  /**
17
+   * @param string|boolean $value
18
+   */
16 19
   public function resolve($value, array $args, ResolveInfo $info)
17 20
   {
18 21
     if ($this->resolveFunctionCache === null) {
Please login to merge, or discard this patch.
src/Execution/Processor.php 1 patch
Doc Comments   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     }
105 105
 
106 106
     /**
107
-     * @param Query|Field        $query
107
+     * @param Query        $query
108 108
      * @param AbstractObjectType $currentLevelSchema
109 109
      * @return array|bool|mixed
110 110
      */
@@ -236,6 +236,9 @@  discard block
 block discarded – undo
236 236
         return $value;
237 237
     }
238 238
 
239
+    /**
240
+     * @param FieldInterface $field
241
+     */
239 242
     protected function createResolveInfo($field, $fields)
240 243
     {
241 244
         return new ResolveInfo($field, $fields, $this->executionContext);
@@ -284,7 +287,7 @@  discard block
 block discarded – undo
284 287
     }
285 288
 
286 289
     /**
287
-     * @param $query         Query|FragmentInterface
290
+     * @param Query $query         Query|FragmentInterface
288 291
      * @param $queryType     AbstractObjectType|TypeInterface|Field|AbstractType
289 292
      * @param $resolvedValue mixed
290 293
      * @param $value         array
@@ -462,7 +465,7 @@  discard block
 block discarded – undo
462 465
      * Fragments (anonymous and named), and Fields.  The core of the function is simple: recurse until we hit the base
463 466
      * case of a Field and yield that back up to the visitor up in `doVisit`.
464 467
      *
465
-     * @param Query|Field|FragmentInterface $queryNode
468
+     * @param Query $queryNode
466 469
      * @param FieldInterface                 $currentLevelAST
467 470
      *
468 471
      * @return \Generator
Please login to merge, or discard this patch.
src/Execution/Request.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      */
94 94
 
95 95
     /**
96
-     * @param $name
96
+     * @param string $name
97 97
      *
98 98
      * @return Field
99 99
      */
@@ -125,6 +125,9 @@  discard block
 block discarded – undo
125 125
         return $this->fields;
126 126
     }
127 127
 
128
+    /**
129
+     * @param string $name
130
+     */
128 131
     public function removeField($name)
129 132
     {
130 133
         if ($this->hasField($name)) {
Please login to merge, or discard this patch.
src/Config/Schema/SchemaConfig.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     }
36 36
 
37 37
     /**
38
-     * @param $query AbstractObjectType
38
+     * @param \Youshido\Tests\StarWars\Schema\StarWarsQueryType $query AbstractObjectType
39 39
      *
40 40
      * @return SchemaConfig
41 41
      */
Please login to merge, or discard this patch.
src/Validator/ResolveValidator/ResolveValidator.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
 
46 46
     /**
47 47
      * @param AbstractObjectType      $objectType
48
-     * @param Mutation|Query|AstField $field
48
+     * @param AstField $field
49 49
      *
50
-     * @return null
50
+     * @return boolean
51 51
      */
52 52
     public function objectHasField($objectType, $field)
53 53
     {
@@ -62,6 +62,7 @@  discard block
 block discarded – undo
62 62
 
63 63
     /**
64 64
      * @inheritdoc
65
+     * @param Query $query
65 66
      */
66 67
     public function validateArguments(FieldInterface $field, $query, Request $request)
67 68
     {
@@ -138,6 +139,9 @@  discard block
 block discarded – undo
138 139
         return true;
139 140
     }
140 141
 
142
+    /**
143
+     * @param Request $request
144
+     */
141 145
     private function processInputObject(InputObject $astObject, AbstractInputObjectType $inputObjectType, $request)
142 146
     {
143 147
         foreach ($astObject->getValue() as $name => $value) {
Please login to merge, or discard this patch.