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