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 = 3-3 lines in 2 locations

src/Config/Parser/AnnotationParser.php 2 locations

@@ 141-143 (lines=3) @@
138
            $propertyAnnotation = self::parseAnnotation($propertyAnnotation);
139
140
            if (!empty($propertyAnnotation['GraphQLEdgeFields'])) {
141
                if (empty($typesConfig[$alias]['config']['edgeFields'])) {
142
                    $typesConfig[$alias]['config']['edgeFields'] = [];
143
                }
144
145
                $typesConfig[$alias]['config']['edgeFields'][$propertyName] = [
146
                    'type' => $propertyAnnotation['GraphQLEdgeFields']['type'],
@@ 150-152 (lines=3) @@
147
                    'resolve' => $propertyAnnotation['GraphQLEdgeFields']['resolve'],
148
                ];
149
            } elseif (!empty($propertyAnnotation['GraphQLConnectionFields'])) {
150
                if (empty($typesConfig[$alias]['config']['connectionFields'])) {
151
                    $typesConfig[$alias]['config']['connectionFields'] = [];
152
                }
153
154
                $typesConfig[$alias]['config']['connectionFields'][$propertyName] = [
155
                    'type' => $propertyAnnotation['GraphQLConnectionFields']['type'],