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

Test Setup Failed
Pull Request — master (#207)
by Renato
09:21
created
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.
DependencyInjection/Compiler/AutowiringTypesPass.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,7 @@
 block discarded – undo
26 26
     public function process(ContainerBuilder $container)
27 27
     {
28 28
         version_compare(Kernel::VERSION, '3.3.0', '>=') ?
29
-            $container->setAlias(PromiseAdapter::class, 'overblog_graphql.promise_adapter') :
30
-            $container->findDefinition('overblog_graphql.promise_adapter')->setAutowiringTypes([PromiseAdapter::class])
29
+            $container->setAlias(PromiseAdapter::class, 'overblog_graphql.promise_adapter') : $container->findDefinition('overblog_graphql.promise_adapter')->setAutowiringTypes([PromiseAdapter::class])
31 30
         ;
32 31
     }
33 32
 }
Please login to merge, or discard this patch.