Completed
Push — master ( 158ce3...996a6b )
by Kévin
03:54
created
src/Bridge/Graphql/Resolver/ItemMutationResolverFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace ApiPlatform\Core\Bridge\Graphql\Resolver;
15 15
 
Please login to merge, or discard this patch.
src/Bridge/Graphql/Type/SchemaBuilder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace ApiPlatform\Core\Bridge\Graphql\Type;
15 15
 
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
         $configuration = [
272 272
             'name' => $shortName,
273 273
             'description' => $resourceMetadata->getDescription(),
274
-            'fields' => function () use ($resource, $isInput, $isMutation, $mutationName) {
274
+            'fields' => function() use ($resource, $isInput, $isMutation, $mutationName) {
275 275
                 return $this->getResourceObjectTypeFields($resource, $isInput, $isMutation, $mutationName);
276 276
             },
277 277
         ];
Please login to merge, or discard this patch.
src/Bridge/Graphql/Resolver/ItemMutationResolverFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace ApiPlatform\Core\Bridge\Graphql\Resolver;
15 15
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
     public function createItemMutationResolver(string $resourceClass, string $mutationName): callable
50 50
     {
51
-        return function ($root, $args, $context, ResolveInfo $info) use ($resourceClass, $mutationName) {
51
+        return function($root, $args, $context, ResolveInfo $info) use ($resourceClass, $mutationName) {
52 52
             $resourceMetadata = $this->resourceMetadataFactory->create($resourceClass);
53 53
 
54 54
             $item = null;
Please login to merge, or discard this patch.