Completed
Pull Request — 8.x-3.x (#663)
by Philipp
02:28
created
src/Plugin/GraphQL/Schemas/SchemaPluginBase.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -384,8 +384,6 @@
 block discarded – undo
384 384
   /**
385 385
    * Retrieves the subscription definition for a given field reference.
386 386
    *
387
-   * @param array $mutation
388
-   *   The subscription reference.
389 387
    *
390 388
    * @return array
391 389
    *   The subscription definition.
Please login to merge, or discard this patch.
src/Controller/RequestController.php 1 patch
Doc Comments   +3 added lines, -5 removed lines patch added patch discarded remove patch
@@ -71,9 +71,8 @@  discard block
 block discarded – undo
71 71
   }
72 72
 
73 73
   /**
74
-   * @param $schema
75
-   * @param $operations
76
-   * @param array $globals
74
+   * @param string $schema
75
+   * @param \GraphQL\Server\OperationParams $operations
77 76
    *
78 77
    * @return \Drupal\Core\Cache\CacheableJsonResponse
79 78
    * @throws \Drupal\Component\Plugin\Exception\PluginException
@@ -86,9 +85,8 @@  discard block
 block discarded – undo
86 85
   }
87 86
 
88 87
   /**
89
-   * @param $schema
88
+   * @param string $schema
90 89
    * @param $operations
91
-   * @param array $globals
92 90
    *
93 91
    * @return \Drupal\Core\Cache\CacheableJsonResponse
94 92
    * @throws \Drupal\Component\Plugin\Exception\PluginException
Please login to merge, or discard this patch.
modules/graphql_core/src/Plugin/GraphQL/Fields/Menu/MenuByName.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Drupal\graphql_core\Plugin\GraphQL\Fields\Menu;
4 4
 
5 5
 use Drupal\Core\DependencyInjection\DependencySerializationTrait;
6
-use Drupal\Core\Entity\EntityType;
7 6
 use Drupal\Core\Entity\EntityTypeManagerInterface;
8 7
 use Drupal\Core\Entity\TranslatableInterface;
9 8
 use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
Please login to merge, or discard this patch.
modules/graphql_core/src/Plugin/GraphQL/Fields/EntityQuery/EntityQuery.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@
 block discarded – undo
217 217
   /**
218 218
    * Apply the specified revision filtering mode to the query.
219 219
    *
220
-   * @param \Drupal\Core\Entity\Query\QueryInterface $query
220
+   * @param QueryInterface|null $query
221 221
    *   The entity query object.
222 222
    * @param mixed $mode
223 223
    *   The revision query mode.
Please login to merge, or discard this patch.