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

@@ 23-32 (lines=10) @@
20
        ];
21
    }
22
23
    private function cleanIdFetcher($idFetcher)
24
    {
25
        $cleanIdFetcher = $idFetcher;
26
27
        if (0 === strpos($idFetcher, '@=')) {
28
            $cleanIdFetcher = substr($idFetcher, 2);
29
        }
30
31
        return $cleanIdFetcher;
32
    }
33
}
34

Relay/Node/NodeFieldDefinition.php 1 location

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