Completed
Pull Request — 8.x-3.x (#525)
by Philipp
03:00
created
graphql_core/src/Plugin/GraphQL/Mutations/Entity/CreateEntityBase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
    * @param \GraphQL\Type\Definition\ResolveInfo $info
108 108
    *   The resolve info object.
109 109
    *
110
-   * @return mixed
110
+   * @return EntityCrudOutputWrapper|null
111 111
    *   The output for the created entity.
112 112
    */
113 113
   protected function resolveOutput(EntityInterface $entity, array $args, ResolveInfo $info) {
Please login to merge, or discard this patch.
src/Controller/RequestController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,8 +72,8 @@  discard block
 block discarded – undo
72 72
   }
73 73
 
74 74
   /**
75
-   * @param $schema
76
-   * @param $operations
75
+   * @param string $schema
76
+   * @param \GraphQL\Server\OperationParams $operations
77 77
    * @param array $globals
78 78
    *
79 79
    * @return \Drupal\Core\Cache\CacheableJsonResponse
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
   }
87 87
 
88 88
   /**
89
-   * @param $schema
89
+   * @param string $schema
90 90
    * @param $operations
91 91
    * @param array $globals
92 92
    *
Please login to merge, or discard this patch.
src/GraphQL/Execution/QueryProcessor.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
    * @param \GraphQL\Server\ServerConfig $config
235 235
    * @param \GraphQL\Server\OperationParams $params
236 236
    * @param \GraphQL\Language\AST\DocumentNode $document
237
-   * @param $operation
237
+   * @param string $operation
238 238
    *
239 239
    * @return callable|mixed
240 240
    */
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
    * @param \GraphQL\Server\ServerConfig $config
252 252
    * @param \GraphQL\Server\OperationParams $params
253 253
    * @param \GraphQL\Language\AST\DocumentNode $document
254
-   * @param $operation
254
+   * @param string $operation
255 255
    *
256 256
    * @return callable|mixed
257 257
    */
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
    * @param \GraphQL\Server\ServerConfig $config
269 269
    * @param \GraphQL\Server\OperationParams $params
270 270
    * @param \GraphQL\Language\AST\DocumentNode $document
271
-   * @param $operation
271
+   * @param string $operation
272 272
    *
273 273
    * @return array|callable
274 274
    */
Please login to merge, or discard this patch.