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
Push — master ( 7c2c4f...89ec61 )
by Jérémiah
08:31 queued 04:24
created
ExpressionLanguage/ExpressionFunction/GraphQL/Relay/IdFetcherCallback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
         parent::__construct(
22 22
             $name,
23
-            function ($idFetcher) {
23
+            function($idFetcher) {
24 24
                 $code = 'function ($value) use ('.TypeGenerator::USE_FOR_CLOSURES.', $args, $context, $info) { ';
25 25
                 $code .= 'return '.$idFetcher.'; }';
26 26
 
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/GraphQL/IsTypeOf.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         parent::__construct(
21 21
             $name,
22
-            function ($className) {
22
+            function($className) {
23 23
                 return sprintf('($className = %s) && $value instanceof $className', $className);
24 24
             }
25 25
         );
Please login to merge, or discard this patch.
ExpressionLanguage/ExpressionFunction/GraphQL/Resolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     {
20 20
         parent::__construct(
21 21
             $name,
22
-            function ($alias, $args = '[]') {
22
+            function($alias, $args = '[]') {
23 23
                 return sprintf('$container->get(\'overblog_graphql.resolver_resolver\')->resolve([%s, %s])', $alias, $args);
24 24
             }
25 25
         );
Please login to merge, or discard this patch.
GraphQL/Relay/Mutation/MutationFieldResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $input = new Argument($args['input']);
33 33
 
34 34
         return $this->promiseAdapter->createFulfilled($mutateAndGetPayloadCallback($input, $context, $info))
35
-            ->then(function ($payload) use ($input) {
35
+            ->then(function($payload) use ($input) {
36 36
                 Resolver::setObjectOrArrayValue($payload, 'clientMutationId', $input['clientMutationId']);
37 37
 
38 38
                 return $payload;
Please login to merge, or discard this patch.