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 (#234)
by Jérémiah
04:38
created

ExecutorContextEvent::setExecutorContext()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 2
1
<?php
2
3
namespace Overblog\GraphQLBundle\Event;
4
5
use Symfony\Component\EventDispatcher\Event;
6
7
class ExecutorContextEvent extends Event
8
{
9
    private $executorContext = [];
10
11
    public function __construct(array $executorContext)
12
    {
13
        $this->executorContext = $executorContext;
14
    }
15
16
    /**
17
     * @return array
18
     */
19
    public function getExecutorContext()
20
    {
21
        return $this->executorContext;
22
    }
23
24
    /**
25
     * @param array $executionContext
26
     */
27
    public function setExecutorContext(array $executionContext)
28
    {
29
        $this->executorContext = $executionContext;
30
    }
31
}
32