Completed
Pull Request — master (#1358)
by Alan
02:42
created
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
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     public function createCollectionResolver(string $resourceClass, string $rootClass): callable
55 55
     {
56
-        return function ($root, $args, $context, ResolveInfo $info) use ($resourceClass, $rootClass) {
56
+        return function($root, $args, $context, ResolveInfo $info) use ($resourceClass, $rootClass) {
57 57
             $request = $this->requestStack ? $this->requestStack->getCurrentRequest() : null;
58 58
             if (null !== $request) {
59 59
                 $request->attributes->set(
Please login to merge, or discard this patch.
src/Bridge/Graphql/Resolver/AbstractResolverFactory.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.