@@ -107,7 +107,7 @@ |
||
| 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) { |
@@ -72,8 +72,8 @@ discard block |
||
| 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 |
||
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | /** |
| 89 | - * @param $schema |
|
| 89 | + * @param string $schema |
|
| 90 | 90 | * @param $operations |
| 91 | 91 | * @param array $globals |
| 92 | 92 | * |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | * @param \GraphQL\Server\ServerConfig $config |
| 283 | 283 | * @param \GraphQL\Server\OperationParams $params |
| 284 | 284 | * @param \GraphQL\Language\AST\DocumentNode $document |
| 285 | - * @param $operation |
|
| 285 | + * @param string $operation |
|
| 286 | 286 | * |
| 287 | 287 | * @return mixed |
| 288 | 288 | */ |
@@ -299,7 +299,7 @@ discard block |
||
| 299 | 299 | * @param \GraphQL\Server\ServerConfig $config |
| 300 | 300 | * @param \GraphQL\Server\OperationParams $params |
| 301 | 301 | * @param \GraphQL\Language\AST\DocumentNode $document |
| 302 | - * @param $operation |
|
| 302 | + * @param string $operation |
|
| 303 | 303 | * |
| 304 | 304 | * @return mixed |
| 305 | 305 | */ |
@@ -316,7 +316,7 @@ discard block |
||
| 316 | 316 | * @param \GraphQL\Server\ServerConfig $config |
| 317 | 317 | * @param \GraphQL\Server\OperationParams $params |
| 318 | 318 | * @param \GraphQL\Language\AST\DocumentNode $document |
| 319 | - * @param $operation |
|
| 319 | + * @param string $operation |
|
| 320 | 320 | * |
| 321 | 321 | * @return array |
| 322 | 322 | */ |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | * @param \GraphQL\Server\ServerConfig $config |
| 338 | 338 | * @param \GraphQL\Server\OperationParams $params |
| 339 | 339 | * @param \GraphQL\Language\AST\DocumentNode $document |
| 340 | - * @param $operation |
|
| 340 | + * @param string $operation |
|
| 341 | 341 | * |
| 342 | 342 | * @return int|null |
| 343 | 343 | */ |
@@ -368,7 +368,7 @@ discard block |
||
| 368 | 368 | /** |
| 369 | 369 | * @param \GraphQL\Language\AST\DocumentNode $document |
| 370 | 370 | * |
| 371 | - * @return array |
|
| 371 | + * @return string |
|
| 372 | 372 | */ |
| 373 | 373 | protected function serializeDocument(DocumentNode $document) { |
| 374 | 374 | return $this->sanitizeRecursive(AST::toArray($document)); |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | /** |
| 17 | 17 | * CacheMetadataCalculator constructor. |
| 18 | 18 | * |
| 19 | - * @param \Drupal\Core\Cache\RefinableCacheableDependencyInterface $metadata |
|
| 19 | + * @param \Drupal\graphql\GraphQL\Execution\ResolveContext $metadata |
|
| 20 | 20 | */ |
| 21 | 21 | public function __construct(RefinableCacheableDependencyInterface $metadata) { |
| 22 | 22 | $this->metadata = $metadata; |