Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Pull Request — master (#682)
by Timur
06:11
created
src/ExpressionLanguage/ExpressionFunction/GraphQL/Arguments.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
     {
14 14
         parent::__construct(
15 15
             'arguments',
16
-            fn ($mapping, $data) => "$this->globalVars->get('container')->get('overblog_graphql.arguments_transformer')->getArguments($mapping, $data, \$info)",
17
-            fn ($arguments, $mapping, $data) => $transformer->getArguments($mapping, $data, $arguments['info'])
16
+            fn($mapping, $data) => "$this->globalVars->get('container')->get('overblog_graphql.arguments_transformer')->getArguments($mapping, $data, \$info)",
17
+            fn($arguments, $mapping, $data) => $transformer->getArguments($mapping, $data, $arguments['info'])
18 18
         );
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
ExpressionFunction/GraphQL/Relay/ResolveSingleInputCallback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
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')
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/GraphQL/Relay/IdFetcherCallback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
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')
Please login to merge, or discard this patch.
ExpressionFunction/GraphQL/Relay/MutateAndGetPayloadCallback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
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')
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionFunction/Security/IsAnonymous.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionFunction/Security/IsFullyAuthenticated.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionFunction/Security/GetUser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
     {
14 14
         parent::__construct(
15 15
             'getUser',
16
-            fn () => "$this->globalVars->get('security')->getUser()",
17
-            fn () => $security->getUser()
16
+            fn() => "$this->globalVars->get('security')->getUser()",
17
+            fn() => $security->getUser()
18 18
         );
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionFunction/Security/HasRole.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
     {
14 14
         parent::__construct(
15 15
             'hasRole',
16
-            fn ($role) => "$this->globalVars->get('security')->hasRole($role)",
17
-            fn ($_, $role) => $security->hasRole($role)
16
+            fn($role) => "$this->globalVars->get('security')->hasRole($role)",
17
+            fn($_, $role) => $security->hasRole($role)
18 18
         );
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
src/ExpressionLanguage/ExpressionFunction/Security/IsAuthenticated.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
     {
14 14
         parent::__construct(
15 15
             'isAuthenticated',
16
-            fn () => "$this->globalVars->get('security')->isAuthenticated()",
17
-            fn () => $security->isAuthenticated()
16
+            fn() => "$this->globalVars->get('security')->isAuthenticated()",
17
+            fn() => $security->isAuthenticated()
18 18
         );
19 19
     }
20 20
 }
Please login to merge, or discard this patch.