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 | 16 |
Duplicated Lines | 0 % |
Coverage | 33.33% |
Changes | 0 |
1 | <?php |
||
10 | final class ExecutorResultEvent extends Event |
||
11 | 1 | { |
|
12 | /** @var ExecutionResult */ |
||
13 | private $result; |
||
14 | |||
15 | public function __construct(ExecutionResult $result) |
||
16 | { |
||
17 | $this->result = $result; |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @return ExecutionResult |
||
22 | */ |
||
23 | public function getResult(): ExecutionResult |
||
26 | } |
||
27 | } |
||
28 |