We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | final class ExecutorResultEvent extends Event |
||
11 | { |
||
12 | /** @var ExecutionResult */ |
||
13 | private $result; |
||
14 | |||
15 | /** @var ExecutorArgumentsEvent */ |
||
16 | private $executorArguments; |
||
17 | |||
18 | 104 | public function __construct(ExecutionResult $result, ExecutorArgumentsEvent $executorArguments) |
|
22 | 104 | } |
|
23 | |||
24 | 104 | public function getResult(): ExecutionResult |
|
25 | { |
||
26 | 104 | return $this->result; |
|
27 | } |
||
28 | |||
29 | 104 | public function getExecutorArguments(): ExecutorArgumentsEvent |
|
32 | } |
||
33 | } |
||
34 |