| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class DKIMSyncCommand extends Command |
||
| 19 | { |
||
| 20 | private Manager $manager; |
||
| 21 | |||
| 22 | public function __construct(Manager $manager) |
||
| 23 | { |
||
| 24 | parent::__construct(); |
||
| 25 | |||
| 26 | $this->manager = $manager; |
||
| 27 | } |
||
| 28 | |||
| 29 | protected function configure(): void |
||
| 34 | } |
||
| 35 | |||
| 36 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 41 | } |
||
| 42 | } |
||
| 43 |