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 (#64)
by Adrian
05:08
created
Tests/Functional/Controller/GraphControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
         $client->request('POST', '/?batch', [], [], ['CONTENT_TYPE' => 'application/json'], json_encode($data));
166 166
         $result = $client->getResponse()->getContent();
167 167
 
168
-        $expected  = [
168
+        $expected = [
169 169
             'friends' => ['data' => $this->expectedData],
170 170
             'friendsTotalCount' => ['data' => ['user' => ['friends' => ['totalCount' => 4]]]],
171 171
         ];
Please login to merge, or discard this patch.
DependencyInjection/Configuration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -111,12 +111,12 @@
 block discarded – undo
111 111
         $node
112 112
             ->info('Disabled if equal to false.')
113 113
             ->beforeNormalization()
114
-                ->ifTrue(function ($v) { return false === $v; })
115
-                ->then(function () use ($disabledValue) { return $disabledValue; })
114
+                ->ifTrue(function($v) { return false === $v; })
115
+                ->then(function() use ($disabledValue) { return $disabledValue; })
116 116
             ->end()
117 117
             ->defaultFalse()
118 118
             ->validate()
119
-                ->ifTrue(function ($v) { return $v < 0; })
119
+                ->ifTrue(function($v) { return $v < 0; })
120 120
                 ->thenInvalid('"overblog_graphql.security.'.$name.'" must be greater or equal to 0.')
121 121
             ->end()
122 122
         ;
Please login to merge, or discard this patch.
DependencyInjection/OverblogGraphQLTypesExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,9 +127,9 @@
 block discarded – undo
127 127
         // from config
128 128
         if (!empty($config['definitions']['mappings']['types'])) {
129 129
             $typesMappings = array_filter(array_map(
130
-                function (array $typeMapping) use ($container) {
130
+                function(array $typeMapping) use ($container) {
131 131
 
132
-                    $params = $this->detectConfigFiles($container, $typeMapping['dir'],  $typeMapping['type']);
132
+                    $params = $this->detectConfigFiles($container, $typeMapping['dir'], $typeMapping['type']);
133 133
 
134 134
                     return $params;
135 135
                 },
Please login to merge, or discard this patch.
Tests/Functional/app/Mutation/SimpleMutationWithThunkFieldsMutation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 {
16 16
     private static $hasMutate = false;
17 17
 
18
-    public static function hasMutate($reset  = false)
18
+    public static function hasMutate($reset = false)
19 19
     {
20 20
         $hasMutate = self::$hasMutate;
21 21
 
Please login to merge, or discard this patch.
Config/TypeDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         $node = $builder->root('name', 'scalar');
44 44
         $node->isRequired();
45 45
         $node->validate()
46
-            ->ifTrue(function ($name) {
46
+            ->ifTrue(function($name) {
47 47
                 return !preg_match('/^[_a-z][_0-9a-z]*$/i', $name);
48 48
             })
49 49
                 ->thenInvalid('Invalid type name "%s". (see https://facebook.github.io/graphql/#Name)')
Please login to merge, or discard this patch.
Config/ObjectTypeDefinition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,11 +36,11 @@
 block discarded – undo
36 36
             ->end();
37 37
 
38 38
         $node->validate()
39
-            ->ifTrue(function ($v) {
39
+            ->ifTrue(function($v) {
40 40
 
41 41
                 return array_key_exists('fieldsDefaultAccess', $v) && null !== $v['fieldsDefaultAccess'];
42 42
             })
43
-            ->then(function ($v) {
43
+            ->then(function($v) {
44 44
                 foreach ($v['fields'] as &$field) {
45 45
                     if (array_key_exists('access', $field) && null !== $field['access']) {
46 46
                         continue;
Please login to merge, or discard this patch.
Config/TypeWithOutputFieldsDefinition.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,10 +127,10 @@  discard block
 block discarded – undo
127 127
         $prototype
128 128
             // build args if argsBuilder exists
129 129
             ->beforeNormalization()
130
-                ->ifTrue(function ($field) {
130
+                ->ifTrue(function($field) {
131 131
                     return isset($field['argsBuilder']);
132 132
                 })
133
-                ->then(function ($field) {
133
+                ->then(function($field) {
134 134
                     $argsBuilderName = null;
135 135
 
136 136
                     if (is_string($field['argsBuilder'])) {
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
             ->end()
157 157
             // build field if builder exists
158 158
             ->beforeNormalization()
159
-                ->always(function ($field) {
159
+                ->always(function($field) {
160 160
                     $fieldBuilderName = null;
161 161
 
162 162
                     if (isset($field['builder']) && is_string($field['builder'])) {
Please login to merge, or discard this patch.
Config/EnumTypeDefinition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
                     ->useAttributeAsKey('name')
28 28
                     ->prototype('array')
29 29
                         ->beforeNormalization()
30
-                            ->ifTrue(function ($v) { return !is_null($v) && !is_array($v); })
31
-                            ->then(function ($v) { return ['value' => $v]; })
30
+                            ->ifTrue(function($v) { return !is_null($v) && !is_array($v); })
31
+                            ->then(function($v) { return ['value' => $v]; })
32 32
                         ->end()
33 33
                         ->isRequired()
34 34
                         ->children()
Please login to merge, or discard this patch.
Tests/Resolver/Toto.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 
41 41
     public function getPrivatePropertyWithoutGetterUsingCallBack()
42 42
     {
43
-        return function () {
43
+        return function() {
44 44
             return $this->privatePropertyWithoutGetter;
45 45
         };
46 46
     }
Please login to merge, or discard this patch.