| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | final class EventSchedulerCommand extends Command |
||
| 15 | { |
||
| 16 | public function __construct( |
||
| 17 | private ContainerInterface $dic |
||
| 18 | ) { |
||
| 19 | parent::__construct( |
||
| 20 | 'event:schedule', |
||
| 21 | 'Runs the event scheduler' |
||
| 22 | ); |
||
| 23 | |||
| 24 | $this |
||
| 25 | ->usage( |
||
| 26 | '<bold> $0 event:schedule</end> <comment></end> ## Runs the event scheduler<eol/>' |
||
| 27 | ); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function execute(): void |
||
| 38 | ); |
||
| 39 | } |
||
| 41 |