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

@@ 257-261 (lines=5) @@
254
        if (array_key_exists('GraphQLColumn', $annotation) && array_key_exists('type', $annotation['GraphQLColumn'])) {
255
            $annotation = $annotation['GraphQLColumn'];
256
            $type = $annotation['type'];
257
        } elseif (array_key_exists('GraphQLToMany', $annotation) && array_key_exists('target', $annotation['GraphQLToMany'])) {
258
            $annotation = $annotation['GraphQLToMany'];
259
            $type = $annotation['target'];
260
            $isMultiple = $nullable = true;
261
        } elseif (array_key_exists('GraphQLToOne', $annotation) && array_key_exists('target', $annotation['GraphQLToOne'])) {
262
            $annotation = $annotation['GraphQLToOne'];
263
            $type = $annotation['target'];
264
            $nullable = true;
@@ 265-269 (lines=5) @@
262
            $annotation = $annotation['GraphQLToOne'];
263
            $type = $annotation['target'];
264
            $nullable = true;
265
        } elseif (array_key_exists('OneToMany', $annotation) && array_key_exists('targetEntity', $annotation['OneToMany'])) {
266
            $annotation = $annotation['OneToMany'];
267
            $type = $annotation['targetEntity'];
268
            $isMultiple = $nullable = true;
269
        } elseif (array_key_exists('OneToOne', $annotation) && array_key_exists('targetEntity', $annotation['OneToOne'])) {
270
            $annotation = $annotation['OneToOne'];
271
            $type = $annotation['targetEntity'];
272
            $nullable = true;
@@ 273-277 (lines=5) @@
270
            $annotation = $annotation['OneToOne'];
271
            $type = $annotation['targetEntity'];
272
            $nullable = true;
273
        } elseif (array_key_exists('ManyToMany', $annotation) && array_key_exists('targetEntity', $annotation['ManyToMany'])) {
274
            $annotation = $annotation['ManyToMany'];
275
            $type = $annotation['targetEntity'];
276
            $isMultiple = $nullable = true;
277
        } elseif (array_key_exists('ManyToOne', $annotation) && array_key_exists('targetEntity', $annotation['ManyToOne'])) {
278
            $annotation = $annotation['ManyToOne'];
279
            $type = $annotation['targetEntity'];
280
            $nullable = true;