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

Passed
Pull Request — master (#815)
by Timur
45:08 queued 20:07
created

ResolverArgs   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 9
c 1
b 0
f 0
dl 0
loc 18
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Overblog\GraphQLBundle\Definition;
6
7
use ArrayObject;
8
use GraphQL\Type\Definition\ResolveInfo;
9
10
class ResolverArgs
11
{
12
    public ArgumentInterface $args;
13
    public ResolveInfo $info;
14
    public ArrayObject $context;
15
16
    /** @var mixed */
17
    public $value;
18
19
    /**
20
     * @param mixed $value
21
     */
22
    public function __construct($value, ArgumentInterface $args, ArrayObject $context, ResolveInfo $info)
23
    {
24
        $this->value = $value;
25
        $this->args = $args;
26
        $this->context = $context;
27
        $this->info = $info;
28
    }
29
}
30