@@ -9,7 +9,7 @@ |
||
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 |
@@ -9,7 +9,7 @@ |
||
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\Symfony\Bundle\DependencyInjection\Compiler; |
15 | 15 |
@@ -9,7 +9,7 @@ |
||
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\DataPersister; |
15 | 15 |
@@ -9,7 +9,7 @@ |
||
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\EventListener; |
15 | 15 |
@@ -9,7 +9,7 @@ |
||
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\Doctrine\Common; |
15 | 15 |
@@ -9,7 +9,7 @@ |
||
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\DataPersister; |
15 | 15 |
@@ -9,7 +9,7 @@ discard block |
||
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 |
||
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', |
@@ -9,7 +9,7 @@ discard block |
||
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 |
||
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])) { |
@@ -9,7 +9,7 @@ discard block |
||
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 | |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | $configuration = [ |
279 | 279 | 'name' => $shortName, |
280 | 280 | 'description' => $resourceMetadata->getDescription(), |
281 | - 'fields' => function () use ($resource, $operationName, $isInput, $isMutation) { |
|
281 | + 'fields' => function() use ($resource, $operationName, $isInput, $isMutation) { |
|
282 | 282 | return $this->getResourceObjectTypeFields($resource, $operationName, $isInput, $isMutation); |
283 | 283 | }, |
284 | 284 | ]; |