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

Passed
Push — master ( 4e8d52...f60ac5 )
by Jérémiah
28:57 queued 28:16
created
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.
Config/ObjectTypeDefinition.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -54,10 +54,10 @@  discard block
 block discarded – undo
54 54
     private function treatFieldsDefaultAccess(ArrayNodeDefinition $node)
55 55
     {
56 56
         $node->validate()
57
-            ->ifTrue(function ($v) {
57
+            ->ifTrue(function($v) {
58 58
                 return array_key_exists('fieldsDefaultAccess', $v) && null !== $v['fieldsDefaultAccess'];
59 59
             })
60
-            ->then(function ($v) {
60
+            ->then(function($v) {
61 61
                 foreach ($v['fields'] as &$field) {
62 62
                     if (array_key_exists('access', $field) && null !== $field['access']) {
63 63
                         continue;
@@ -79,10 +79,10 @@  discard block
 block discarded – undo
79 79
     private function treatFieldsDefaultPublic(ArrayNodeDefinition $node)
80 80
     {
81 81
         $node->validate()
82
-            ->ifTrue(function ($v) {
82
+            ->ifTrue(function($v) {
83 83
                 return array_key_exists('fieldsDefaultPublic', $v) && null !== $v['fieldsDefaultPublic'];
84 84
             })
85
-            ->then(function ($v) {
85
+            ->then(function($v) {
86 86
                 foreach ($v['fields'] as &$field) {
87 87
                     if (array_key_exists('public', $field) && null !== $field['public']) {
88 88
                         continue;
@@ -106,10 +106,10 @@  discard block
 block discarded – undo
106 106
     private function treatResolveField(ArrayNodeDefinition $node)
107 107
     {
108 108
         $node->validate()
109
-            ->ifTrue(function ($v) {
109
+            ->ifTrue(function($v) {
110 110
                 return array_key_exists('resolveField', $v) && null !== $v['resolveField'];
111 111
             })
112
-            ->then(function ($v) {
112
+            ->then(function($v) {
113 113
                 $resolveField = $v['resolveField'];
114 114
                 unset($v['resolveField']);
115 115
                 foreach ($v['fields'] as &$field) {
Please login to merge, or discard this patch.