@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | * @param integer[] $types |
146 | 146 | * A list of type constants. |
147 | 147 | * |
148 | - * @return object The highest weighted plugin with a specific name. |
|
148 | + * @return \object|null The highest weighted plugin with a specific name. |
|
149 | 149 | * The highest weighted plugin with a specific name. |
150 | 150 | * |
151 | 151 | * @throws \Drupal\Component\Plugin\Exception\InvalidPluginDefinitionException |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | * @param string[] $types |
175 | 175 | * A list of type constants. |
176 | 176 | * |
177 | - * @return object |
|
177 | + * @return \object|null |
|
178 | 178 | * The matching type with the highest weight. |
179 | 179 | */ |
180 | 180 | public function findByDataType($dataType, array $types = [ |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | /** |
206 | 206 | * Retrieve all mutations. |
207 | 207 | * |
208 | - * @return object[] |
|
208 | + * @return \object[] |
|
209 | 209 | * The list of mutation plugins. |
210 | 210 | */ |
211 | 211 | public function getMutations() { |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | /** |
218 | 218 | * Retrieve all fields that are not associated with a specific type. |
219 | 219 | * |
220 | - * @return object[] |
|
220 | + * @return \object[] |
|
221 | 221 | * The list root field plugins. |
222 | 222 | */ |
223 | 223 | public function getRootFields() { |
@@ -50,6 +50,7 @@ |
||
50 | 50 | |
51 | 51 | /** |
52 | 52 | * {@inheritdoc} |
53 | + * @param string $pluginId |
|
53 | 54 | */ |
54 | 55 | public function createInstance($pluginId, array $configuration = []) { |
55 | 56 | if (!array_key_exists($pluginId, $this->instances)) { |
@@ -9,7 +9,6 @@ |
||
9 | 9 | use Drupal\Core\Entity\EntityTypeManagerInterface; |
10 | 10 | use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface; |
11 | 11 | use Drupal\graphql\Utility\StringHelper; |
12 | -use Drupal\graphql_content_mutation\ContentEntityMutationSchemaConfig; |
|
13 | 12 | use Symfony\Component\DependencyInjection\ContainerInterface; |
14 | 13 | |
15 | 14 | class EntityInputDeriver extends DeriverBase implements ContainerDeriverInterface { |
@@ -8,7 +8,6 @@ |
||
8 | 8 | use Drupal\Core\Entity\EntityTypeManagerInterface; |
9 | 9 | use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface; |
10 | 10 | use Drupal\graphql\Utility\StringHelper; |
11 | -use Drupal\graphql_content_mutation\ContentEntityMutationSchemaConfig; |
|
12 | 11 | use Symfony\Component\DependencyInjection\ContainerInterface; |
13 | 12 | |
14 | 13 | class EntityInputFieldDeriver extends DeriverBase implements ContainerDeriverInterface { |
@@ -8,7 +8,6 @@ |
||
8 | 8 | use Drupal\Core\Entity\EntityTypeManagerInterface; |
9 | 9 | use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface; |
10 | 10 | use Drupal\graphql\Utility\StringHelper; |
11 | -use Drupal\graphql_content_mutation\ContentEntityMutationSchemaConfig; |
|
12 | 11 | use Symfony\Component\DependencyInjection\ContainerInterface; |
13 | 12 | |
14 | 13 | class CreateEntityDeriver extends DeriverBase implements ContainerDeriverInterface { |
@@ -7,7 +7,6 @@ |
||
7 | 7 | use Drupal\Core\Entity\EntityTypeManagerInterface; |
8 | 8 | use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface; |
9 | 9 | use Drupal\graphql\Utility\StringHelper; |
10 | -use Drupal\graphql_content_mutation\ContentEntityMutationSchemaConfig; |
|
11 | 10 | use Symfony\Component\DependencyInjection\ContainerInterface; |
12 | 11 | |
13 | 12 | class DeleteEntityDeriver extends DeriverBase implements ContainerDeriverInterface { |
@@ -8,7 +8,6 @@ |
||
8 | 8 | use Drupal\Core\Entity\EntityTypeManagerInterface; |
9 | 9 | use Drupal\Core\Plugin\Discovery\ContainerDeriverInterface; |
10 | 10 | use Drupal\graphql\Utility\StringHelper; |
11 | -use Drupal\graphql_content_mutation\ContentEntityMutationSchemaConfig; |
|
12 | 11 | use Symfony\Component\DependencyInjection\ContainerInterface; |
13 | 12 | |
14 | 13 | class UpdateEntityDeriver extends DeriverBase implements ContainerDeriverInterface { |