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

@@ 72-76 (lines=5) @@
69
70
    protected function checkRequirements($id, array $tag)
71
    {
72
        if (isset($tag['alias']) && !is_string($tag['alias'])) {
73
            throw new \InvalidArgumentException(
74
                sprintf('Service tagged "%s" must have valid "alias" argument.', $id)
75
            );
76
        }
77
    }
78
79
    private function autowireSolutionImplementingContainerAwareInterface(Definition $solutionDefinition, $isGenerated)