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
Pull Request — master (#197)
by Renato
09:16 queued 02:55
created
DependencyInjection/TypesConfiguration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
                         ->thenInvalid(
70 70
                             sprintf(
71 71
                                 'Don\'t use internal config keys %s, replace it by "config" instead.',
72
-                                implode(', ',  $configTypeKeys)
72
+                                implode(', ', $configTypeKeys)
73 73
                             )
74 74
                         )
75 75
                 ->end()
Please login to merge, or discard this patch.
DependencyInjection/OverblogGraphQLTypesExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
         // from config
71 71
         $typesMappings = array_filter(array_map(
72 72
             function (array $typeMapping) use ($container) {
73
-                $params = $this->detectFilesByType($container, $typeMapping['dir'],  $typeMapping['type']);
73
+                $params = $this->detectFilesByType($container, $typeMapping['dir'], $typeMapping['type']);
74 74
 
75 75
                 return $params;
76 76
             },
Please login to merge, or discard this patch.
Tests/Functional/Type/DefinitionTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
             'description' => null,
36 36
             'deprecationReason' => 'Just because',
37 37
             'value' => 'foo',
38
-        ],  $value->config);
38
+        ], $value->config);
39 39
         $this->assertEquals(true, $this->isDeprecated($value));
40 40
     }
41 41
 
Please login to merge, or discard this patch.
DependencyInjection/Compiler/TaggedServiceMappingPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
 
85 85
             $resolverDefinition->addMethodCall(
86 86
                 'addSolution',
87
-                [$name, [new Reference('service_container'), 'get'], [$solutionID],  $cleanOptions]
87
+                [$name, [new Reference('service_container'), 'get'], [$solutionID], $cleanOptions]
88 88
             );
89 89
         }
90 90
     }
Please login to merge, or discard this patch.
Tests/Resolver/AbstractProxyResolverTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     protected function getResolverSolutionsMapping()
17 17
     {
18 18
         return [
19
-            'Toto' => ['solutionFunc' => [$this, 'createToto'], 'solutionFuncArgs' => [],  'method' => 'resolve'],
19
+            'Toto' => ['solutionFunc' => [$this, 'createToto'], 'solutionFuncArgs' => [], 'method' => 'resolve'],
20 20
         ];
21 21
     }
22 22
 
Please login to merge, or discard this patch.