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 3 locations

Config/Parser/AnnotationParser.php 3 locations

@@ 332-336 (lines=5) @@
329
        if (array_key_exists('GraphQLColumn', $annotation) && array_key_exists('type', $annotation['GraphQLColumn'])) {
330
            $annotation = $annotation['GraphQLColumn'];
331
            $type = $annotation['type'];
332
        } elseif (array_key_exists('GraphQLToMany', $annotation) && array_key_exists('target', $annotation['GraphQLToMany'])) {
333
            $annotation = $annotation['GraphQLToMany'];
334
            $type = $annotation['target'];
335
            $isMultiple = $nullable = true;
336
        } elseif (array_key_exists('GraphQLToOne', $annotation) && array_key_exists('target', $annotation['GraphQLToOne'])) {
337
            $annotation = $annotation['GraphQLToOne'];
338
            $type = $annotation['target'];
339
            $nullable = true;
@@ 340-344 (lines=5) @@
337
            $annotation = $annotation['GraphQLToOne'];
338
            $type = $annotation['target'];
339
            $nullable = true;
340
        } elseif (array_key_exists('OneToMany', $annotation) && array_key_exists('targetEntity', $annotation['OneToMany'])) {
341
            $annotation = $annotation['OneToMany'];
342
            $type = $annotation['targetEntity'];
343
            $isMultiple = $nullable = true;
344
        } elseif (array_key_exists('OneToOne', $annotation) && array_key_exists('targetEntity', $annotation['OneToOne'])) {
345
            $annotation = $annotation['OneToOne'];
346
            $type = $annotation['targetEntity'];
347
            $nullable = true;
@@ 348-352 (lines=5) @@
345
            $annotation = $annotation['OneToOne'];
346
            $type = $annotation['targetEntity'];
347
            $nullable = true;
348
        } elseif (array_key_exists('ManyToMany', $annotation) && array_key_exists('targetEntity', $annotation['ManyToMany'])) {
349
            $annotation = $annotation['ManyToMany'];
350
            $type = $annotation['targetEntity'];
351
            $isMultiple = $nullable = true;
352
        } elseif (array_key_exists('ManyToOne', $annotation) && array_key_exists('targetEntity', $annotation['ManyToOne'])) {
353
            $annotation = $annotation['ManyToOne'];
354
            $type = $annotation['targetEntity'];
355
            $nullable = true;