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 (#275)
by Hugo
15:12
created

ExecutorResultEvent::getResult()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 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 59
    public function __construct(ExecutionResult $result)
14
    {
15 59
        $this->result = $result;
16 59
    }
17
18
    /**
19
     * @return ExecutionResult
20
     */
21 59
    public function getResult()
22
    {
23 59
        return $this->result;
24
    }
25
}
26