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 ( 452341...d2fd23 )
by Jérémiah
06:57
created
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.