We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 33.33% |
Changes | 0 |
1 | <?php |
||
9 | final class ExecutorContextEvent extends Event |
||
10 | 1 | { |
|
11 | /** @var \ArrayObject */ |
||
12 | private $executorContext; |
||
13 | |||
14 | /** |
||
15 | * @param \ArrayObject $executorContext |
||
16 | */ |
||
17 | public function __construct(\ArrayObject $executorContext) |
||
18 | { |
||
19 | $this->executorContext = $executorContext; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @return \ArrayObject |
||
24 | */ |
||
25 | public function getExecutorContext(): \ArrayObject |
||
28 | } |
||
29 | } |
||
30 |