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
Pull Request — master (#264)
by Jérémiah
22:49
created

ExecutorResultEvent::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 4
rs 10
c 1
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace Overblog\GraphQLBundle\Event;
4
5
use GraphQL\Executor\ExecutionResult;
6
use Symfony\Component\EventDispatcher\Event;
7
8
final class ExecutorResultEvent extends Event
9
{
10
    /** @var ExecutionResult */
11
    private $result;
12
13
    public function __construct(ExecutionResult $result)
14
    {
15
        $this->result = $result;
16
    }
17
18
    /**
19
     * @return ExecutionResult
20
     */
21
    public function getResult()
22
    {
23
        return $this->result;
24
    }
25
}
26