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

src/Config/Parser/AnnotationParser.php 2 locations

@@ 98-104 (lines=7) @@
95
                            $gqlConfiguration = self::getGraphqlType($classAnnotation, $classAnnotations, $propertiesAnnotations, $methodsAnnotations, $namespace);
96
                        }
97
                        break;
98
                    case $classAnnotation instanceof AnnotationInputType:
99
                        $gqlType = 'input';
100
                        $gqlName = $classAnnotation->name ?: self::suffixName($shortClassName, 'Input');
101
                        if (!$resolveClassMap) {
102
                            $gqlConfiguration = self::getGraphqlInputType($classAnnotation, $classAnnotations, $propertiesAnnotations, $namespace);
103
                        }
104
                        break;
105
                    case $classAnnotation instanceof AnnotationScalar:
106
                        $gqlType = 'scalar';
107
                        if (!$resolveClassMap) {
@@ 111-117 (lines=7) @@
108
                            $gqlConfiguration = self::getGraphqlScalar($className, $classAnnotation, $classAnnotations);
109
                        }
110
                        break;
111
                    case $classAnnotation instanceof AnnotationEnum:
112
                        $gqlType = 'enum';
113
                        $gqlName = $classAnnotation->name ?: self::suffixName($shortClassName, 'Enum');
114
                        if (!$resolveClassMap) {
115
                            $gqlConfiguration = self::getGraphqlEnum($classAnnotation, $classAnnotations, $reflexionEntity->getConstants());
116
                        }
117
                        break;
118
                    case $classAnnotation instanceof AnnotationUnion:
119
                        $gqlType = 'union';
120
                        if (!$resolveClassMap) {