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 | 0% |
Changes | 0 |
1 | <?php |
||
12 | final class ExecutorResultEvent extends \Symfony\Component\EventDispatcher\Event |
||
|
|||
13 | { |
||
14 | /** @var ExecutionResult */ |
||
15 | private $result; |
||
16 | |||
17 | public function __construct(ExecutionResult $result) |
||
18 | { |
||
19 | $this->result = $result; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @return ExecutionResult |
||
24 | */ |
||
25 | public function getResult(): ExecutionResult |
||
28 | } |
||
29 | } |
||
50 |