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 ( 180290...4c80a4 )
by Jérémiah
01:37
created
Config/TypeWithOutputFieldsDefinition.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@  discard block
 block discarded – undo
54 54
         self::$fieldBuilderClassMap[$name] = $fieldBuilderClass;
55 55
     }
56 56
 
57
+    /**
58
+     * @param string $type
59
+     */
57 60
     protected static function checkBuilderClass($builderClass, $type)
58 61
     {
59 62
         $interface = 'Overblog\\GraphQLBundle\\Definition\\Builder\\MappingInterface';
@@ -116,6 +119,9 @@  discard block
 block discarded – undo
116 119
         throw new InvalidConfigurationException(sprintf('%s builder "%s" not found.', ucfirst($type), $name));
117 120
     }
118 121
 
122
+    /**
123
+     * @param string $name
124
+     */
119 125
     protected function outputFieldsSelection($name)
120 126
     {
121 127
         $builder = new TreeBuilder();
Please login to merge, or discard this patch.
Config/ObjectTypeDefinition.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,10 +50,10 @@  discard block
 block discarded – undo
50 50
     private function treatFieldsDefaultAccess(ArrayNodeDefinition $node)
51 51
     {
52 52
         $node->validate()
53
-            ->ifTrue(function ($v) {
53
+            ->ifTrue(function($v) {
54 54
                 return array_key_exists('fieldsDefaultAccess', $v) && null !== $v['fieldsDefaultAccess'];
55 55
             })
56
-            ->then(function ($v) {
56
+            ->then(function($v) {
57 57
                 foreach ($v['fields'] as &$field) {
58 58
                     if (array_key_exists('access', $field) && null !== $field['access']) {
59 59
                         continue;
@@ -77,10 +77,10 @@  discard block
 block discarded – undo
77 77
     private function treatResolveField(ArrayNodeDefinition $node)
78 78
     {
79 79
         $node->validate()
80
-            ->ifTrue(function ($v) {
80
+            ->ifTrue(function($v) {
81 81
                 return array_key_exists('resolveField', $v) && null !== $v['resolveField'];
82 82
             })
83
-            ->then(function ($v) {
83
+            ->then(function($v) {
84 84
                 $resolveField = $v['resolveField'];
85 85
                 unset($v['resolveField']);
86 86
                 foreach ($v['fields'] as &$field) {
Please login to merge, or discard this patch.