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

Code Duplication    Length = 5-5 lines in 2 locations

DependencyInjection/Compiler/ResolverTaggedServiceMappingPass.php 1 location

@@ 16-20 (lines=5) @@
13
    {
14
        parent::checkRequirements($id, $tag);
15
16
        if (isset($tag['method']) && !is_string($tag['method'])) {
17
            throw new \InvalidArgumentException(
18
                sprintf('Service tagged "%s" must have valid "method" argument.', $id)
19
            );
20
        }
21
    }
22
23
    protected function getResolverServiceID()

DependencyInjection/Compiler/TaggedServiceMappingPass.php 1 location

@@ 68-72 (lines=5) @@
65
66
    protected function checkRequirements($id, array $tag)
67
    {
68
        if (isset($tag['alias']) && !is_string($tag['alias'])) {
69
            throw new \InvalidArgumentException(
70
                sprintf('Service tagged "%s" must have valid "alias" argument.', $id)
71
            );
72
        }
73
    }
74
75
    /**