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
25:10
created

ResolverArgs::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 4
c 1
b 0
f 0
nc 1
nop 4
dl 0
loc 6
rs 10
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
15
    /** @var mixed */
16
    public $value;
17
18
    /** @var mixed */
19
    public $context;
20
21
    /**
22
     * @param mixed $value
23
     * @param mixed $context
24
     */
25
    public function __construct($value, ArgumentInterface $args, ArrayObject $context, ResolveInfo $info)
26
    {
27
        $this->value = $value;
28
        $this->args = $args;
29
        $this->context = $context;
30
        $this->info = $info;
31
    }
32
}
33