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

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