We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -13,8 +13,8 @@ |
||
13 | 13 | { |
14 | 14 | parent::__construct( |
15 | 15 | $name, |
16 | - fn (string $value) => "$this->globalVars->get('container')->getParameter($value)", |
|
17 | - fn ($arguments, $paramName) => $parameterBag->get($paramName) |
|
16 | + fn(string $value) => "$this->globalVars->get('container')->getParameter($value)", |
|
17 | + fn($arguments, $paramName) => $parameterBag->get($paramName) |
|
18 | 18 | ); |
19 | 19 | } |
20 | 20 | } |
@@ -13,8 +13,8 @@ |
||
13 | 13 | { |
14 | 14 | parent::__construct( |
15 | 15 | $name, |
16 | - fn (string $serviceId) => "$this->globalVars->get('container')->get($serviceId)", |
|
17 | - fn ($arguments, $serviceId) => $container->get($serviceId) |
|
16 | + fn(string $serviceId) => "$this->globalVars->get('container')->get($serviceId)", |
|
17 | + fn($arguments, $serviceId) => $container->get($serviceId) |
|
18 | 18 | ); |
19 | 19 | } |
20 | 20 | } |
@@ -12,7 +12,7 @@ |
||
12 | 12 | { |
13 | 13 | parent::__construct( |
14 | 14 | $name, |
15 | - fn ($alias, $args = '[]') => "$this->globalVars->get('mutationResolver')->resolve([$alias, $args])" |
|
15 | + fn($alias, $args = '[]') => "$this->globalVars->get('mutationResolver')->resolve([$alias, $args])" |
|
16 | 16 | ); |
17 | 17 | } |
18 | 18 | } |
@@ -12,7 +12,7 @@ |
||
12 | 12 | { |
13 | 13 | parent::__construct( |
14 | 14 | $name, |
15 | - fn (string $alias, string $args = '[]') => "$this->globalVars->get('resolverResolver')->resolve([$alias, $args])" |
|
15 | + fn(string $alias, string $args = '[]') => "$this->globalVars->get('resolverResolver')->resolve([$alias, $args])" |
|
16 | 16 | ); |
17 | 17 | } |
18 | 18 | } |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | parent::__construct( |
16 | 16 | 'resolveSingleInputCallback', |
17 | - static fn ($resolveSingleInput) => ( |
|
17 | + static fn($resolveSingleInput) => ( |
|
18 | 18 | Closure::new() |
19 | 19 | ->addArgument('value') |
20 | 20 | ->bindVars(TypeGenerator::GLOBAL_VARS, 'args', 'context', 'info') |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | parent::__construct( |
16 | 16 | 'idFetcherCallback', |
17 | - static fn ($idFetcher) => ( |
|
17 | + static fn($idFetcher) => ( |
|
18 | 18 | Closure::new() |
19 | 19 | ->addArgument('value') |
20 | 20 | ->bindVars(TypeGenerator::GLOBAL_VARS, 'args', 'context', 'info') |
@@ -14,7 +14,7 @@ |
||
14 | 14 | { |
15 | 15 | parent::__construct( |
16 | 16 | 'mutateAndGetPayloadCallback', |
17 | - static fn ($mutateAndGetPayload) => ( |
|
17 | + static fn($mutateAndGetPayload) => ( |
|
18 | 18 | Closure::new() |
19 | 19 | ->addArgument('value') |
20 | 20 | ->bindVars(TypeGenerator::GLOBAL_VARS, 'args', 'context', 'info') |
@@ -13,8 +13,8 @@ |
||
13 | 13 | { |
14 | 14 | parent::__construct( |
15 | 15 | 'isAnonymous', |
16 | - fn () => "$this->globalVars->get('security')->isAnonymous()", |
|
17 | - fn () => $security->isAnonymous() |
|
16 | + fn() => "$this->globalVars->get('security')->isAnonymous()", |
|
17 | + fn() => $security->isAnonymous() |
|
18 | 18 | ); |
19 | 19 | } |
20 | 20 | } |
@@ -13,8 +13,8 @@ |
||
13 | 13 | { |
14 | 14 | parent::__construct( |
15 | 15 | 'isFullyAuthenticated', |
16 | - fn () => "$this->globalVars->get('security')->isFullyAuthenticated()", |
|
17 | - fn () => $security->isFullyAuthenticated() |
|
16 | + fn() => "$this->globalVars->get('security')->isFullyAuthenticated()", |
|
17 | + fn() => $security->isFullyAuthenticated() |
|
18 | 18 | ); |
19 | 19 | } |
20 | 20 | } |