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

src/Config/Parser/AnnotationParser.php 3 locations

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