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

Completed
Push — master ( 00f2a7...09d8ad )
by Jérémiah
16s queued 10s
created

Union

Complexity

Total Complexity 0

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
eloc 4
c 1
b 0
f 0
dl 0
loc 22
ccs 0
cts 0
cp 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Overblog\GraphQLBundle\Annotation;
6
7
/**
8
 * Annotation for GraphQL union.
9
 *
10
 * @Annotation
11
 * @Target("CLASS")
12
 */
13
final class Union implements Annotation
14
{
15
    /**
16
     * Union name.
17
     *
18
     * @var string
19
     */
20
    public string $name;
21
22
    /**
23
     * Union types.
24
     *
25
     * @var array<string>
26
     */
27
    public array $types;
28
29
    /**
30
     * Resolver type for union.
31
     *
32
     * @var string
33
     */
34
    public string $resolveType;
35
}
36