Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | abstract class ScheduleEvent extends Event |
||
12 | { |
||
13 | /** @var ScheduleRunContext */ |
||
14 | private $runContext; |
||
15 | 81 | ||
16 | final public function __construct(ScheduleRunContext $runContext) |
||
17 | 81 | { |
|
18 | 81 | $this->runContext = $runContext; |
|
19 | } |
||
20 | 17 | ||
21 | final public function runContext(): ScheduleRunContext |
||
24 | } |
||
25 | } |
||
26 |