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 | 0% |
Changes | 0 |
1 | <?php |
||
11 | final class ExecutorContextEvent extends \Symfony\Component\EventDispatcher\Event |
||
|
|||
12 | { |
||
13 | /** @var \ArrayObject */ |
||
14 | private $executorContext; |
||
15 | |||
16 | /** |
||
17 | * @param \ArrayObject $executorContext |
||
18 | */ |
||
19 | public function __construct(\ArrayObject $executorContext) |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return \ArrayObject |
||
26 | */ |
||
27 | public function getExecutorContext(): \ArrayObject |
||
55 |