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

Tests/Functional/Relay/Mutation/MutationTest.php 3 locations

@@ 48-67 (lines=20) @@
45
        );
46
    }
47
48
    public function testReturnTheSameClientMutationId()
49
    {
50
        $query = <<<'EOF'
51
mutation M {
52
  simpleMutation(input: {clientMutationId: "abc"}) {
53
    result
54
    clientMutationId
55
  }
56
}
57
EOF;
58
59
        $expectedData = [
60
            'simpleMutation' => [
61
                'result' => 1,
62
                'clientMutationId' => 'abc',
63
            ],
64
        ];
65
66
        $this->assertGraphQL($query, $expectedData);
67
    }
68
69
    public function testSupportsThunksAsInputAndOutputFields()
70
    {
@@ 69-87 (lines=19) @@
66
        $this->assertGraphQL($query, $expectedData);
67
    }
68
69
    public function testSupportsThunksAsInputAndOutputFields()
70
    {
71
        $query = <<<'EOF'
72
mutation M {
73
  simpleMutationWithThunkFields(input: {inputData: 1234, clientMutationId: "abc"}) {
74
    result
75
    clientMutationId
76
  }
77
}
78
EOF;
79
        $expectedData = [
80
            'simpleMutationWithThunkFields' => [
81
                'result' => 1234,
82
                'clientMutationId' => 'abc',
83
            ],
84
        ];
85
86
        $this->assertGraphQL($query, $expectedData);
87
    }
88
89
    public function testSupportsPromiseMutations()
90
    {
@@ 89-107 (lines=19) @@
86
        $this->assertGraphQL($query, $expectedData);
87
    }
88
89
    public function testSupportsPromiseMutations()
90
    {
91
        $query = <<<'EOF'
92
mutation M {
93
  simplePromiseMutation(input: {clientMutationId: "abc"}) {
94
    result
95
    clientMutationId
96
  }
97
}
98
EOF;
99
        $expectedData = [
100
            'simplePromiseMutation' => [
101
                'result' => 1,
102
                'clientMutationId' => 'abc',
103
            ],
104
        ];
105
106
        $this->assertGraphQL($query, $expectedData);
107
    }
108
109
    public function testContainsCorrectInput()
110
    {