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 (#234)
by Jérémiah
08:51
created
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.
Resolver/TypeResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     {
51 51
         try {
52 52
             $type = $this->getSolution($alias);
53
-        } catch (\Error|\Exception $e) {
53
+        } catch (\Error | \Exception $e) {
54 54
             throw new \RuntimeException(
55 55
                 sprintf(
56 56
                     'Type class for alias %s could not be load. If you are using your own classLoader verify the path and the namespace please.',
Please login to merge, or discard this patch.