Completed
Push — master ( d18ec0...bd3639 )
by Kévin
17s
created
src/Bridge/Graphql/Type/SchemaBuilder.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
      *
113 113
      * @see http://webonyx.github.io/graphql-php/type-system/object-types/
114 114
      *
115
-     * @return array|null
115
+     * @return string
116 116
      */
117 117
     private function getResourceFieldConfiguration(string $fieldDescription = null, Type $type, string $rootResource, string $operationName, bool $isInput = false)
118 118
     {
Please login to merge, or discard this 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
 
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
         $configuration = [
241 241
             'name' => $shortName,
242 242
             'description' => $resourceMetadata->getDescription(),
243
-            'fields' => function () use ($resource, $operationName, $isInput) {
243
+            'fields' => function() use ($resource, $operationName, $isInput) {
244 244
                 return $this->getResourceObjectTypeFields($resource, $operationName, $isInput);
245 245
             },
246 246
         ];
Please login to merge, or discard this patch.
src/Bridge/Graphql/Resolver/CollectionResolverFactory.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
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     public function createCollectionResolver(string $resourceClass, string $rootClass, string $operationName): callable
58 58
     {
59
-        return function ($root, $args, $context, ResolveInfo $info) use ($resourceClass, $rootClass, $operationName) {
59
+        return function($root, $args, $context, ResolveInfo $info) use ($resourceClass, $rootClass, $operationName) {
60 60
             if (null !== $request = $this->requestStack->getCurrentRequest()) {
61 61
                 $request->attributes->set(
62 62
                     '_graphql_collections_args',
Please login to merge, or discard this patch.
src/Bridge/Graphql/Resolver/ItemResolverFactory.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
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public function createItemResolver(string $resourceClass, string $rootClass, string $operationName): callable
52 52
     {
53
-        return function ($root, $args, $context, ResolveInfo $info) use ($resourceClass, $rootClass, $operationName) {
53
+        return function($root, $args, $context, ResolveInfo $info) use ($resourceClass, $rootClass, $operationName) {
54 54
             $rootProperty = $info->fieldName;
55 55
             $rootIdentifiers = $this->identifiersExtractor->getIdentifiersFromResourceClass($rootClass);
56 56
             if (isset($root[$rootProperty])) {
Please login to merge, or discard this patch.