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 ( 6f6f6a...eba369 )
by Jérémiah
13:40 queued 10:09
created

ExecutorContextEvent   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 25
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%
Metric Value
wmc 3
lcom 0
cbo 1
dl 0
loc 25
ccs 8
cts 8
cp 1
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getExecutorContext() 0 4 1
A setExecutorContext() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of the OverblogGraphQLBundle package.
5
 *
6
 * (c) Overblog <http://github.com/overblog/>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Overblog\GraphQLBundle\Event;
13
14
use Symfony\Component\EventDispatcher\Event;
15
16
class ExecutorContextEvent extends Event
17
{
18
    private $executorContext = [];
19
20 25
    public function __construct(array $executorContext)
21
    {
22 25
        $this->executorContext = $executorContext;
23 25
    }
24
25
    /**
26
     * @return array
27
     */
28 25
    public function getExecutorContext()
29
    {
30 25
        return $this->executorContext;
31
    }
32
33
    /**
34
     * @param array $executionContext
35
     */
36 3
    public function setExecutorContext(array $executionContext)
37
    {
38 3
        $this->executorContext = $executionContext;
39 3
    }
40
}
41