| 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 | 19 | final protected function configure(): void |
|
| 24 | } |
||
| 25 | |||
| 26 | 19 | 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 |