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

Relay/Node/GlobalIdFieldDefinition.php 1 location

@@ 31-40 (lines=10) @@
28
        ];
29
    }
30
31
    private function cleanIdFetcher($idFetcher)
32
    {
33
        $cleanIdFetcher = $idFetcher;
34
35
        if (0 === strpos($idFetcher, '@=')) {
36
            $cleanIdFetcher = substr($idFetcher, 2);
37
        }
38
39
        return $cleanIdFetcher;
40
    }
41
}
42

Relay/Node/NodeFieldDefinition.php 1 location

@@ 39-48 (lines=10) @@
36
        ];
37
    }
38
39
    private function cleanIdFetcher($idFetcher)
40
    {
41
        $cleanIdFetcher = $idFetcher;
42
43
        if (0 === strpos($idFetcher, '@=')) {
44
            $cleanIdFetcher = substr($idFetcher, 2);
45
        }
46
47
        return $cleanIdFetcher;
48
    }
49
}
50