We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
1 | <?php |
||
7 | class ExecutorContextEvent extends Event |
||
8 | { |
||
9 | private $executorContext = []; |
||
10 | |||
11 | 58 | public function __construct(array $executorContext) |
|
12 | { |
||
13 | 58 | $this->executorContext = $executorContext; |
|
14 | 58 | } |
|
15 | |||
16 | /** |
||
17 | * @return array |
||
18 | */ |
||
19 | 58 | public function getExecutorContext() |
|
23 | |||
24 | /** |
||
25 | * @param array $executionContext |
||
26 | */ |
||
27 | 26 | public function setExecutorContext(array $executionContext) |
|
31 | } |
||
32 |