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 ( 4d0aaf...244ff3 )
by Timur
17s queued 14s
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
    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