Total Complexity | 5 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Coverage | 94.12% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | abstract class AbstractWithDateRangeCommand extends Command |
||
17 | { |
||
18 | 20 | final protected function configure(): void |
|
24 | 20 | } |
|
25 | |||
26 | 20 | protected function getDateOption(InputInterface $input, OutputInterface $output, string $key): ?Chronos |
|
47 | } |
||
48 | } |
||
49 | |||
50 | abstract protected function doConfigure(): void; |
||
51 | |||
52 | abstract protected function getStartDateDesc(): string; |
||
53 | abstract protected function getEndDateDesc(): string; |
||
54 | } |
||
55 |