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 | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | final class ExecutorContextEvent extends Event |
||
| 10 | { |
||
| 11 | /** @var \ArrayObject */ |
||
| 12 | private $executorContext; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param \ArrayObject $executorContext |
||
| 16 | */ |
||
| 17 | 103 | public function __construct(\ArrayObject $executorContext) |
|
| 20 | 103 | } |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @return \ArrayObject |
||
| 24 | */ |
||
| 25 | 47 | public function getExecutorContext(): \ArrayObject |
|
| 30 |