| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | public function execute(InputInterface $input, OutputInterface $output): int { |
||
| 24 | $style = new SymfonyStyle($input, $output); |
||
| 25 | |||
| 26 | $threshold = $this->dateHelper->getToday()->modify(self::Modifier); |
||
| 27 | $count = $this->userRepository->removeDeletedUsers($threshold); |
||
| 28 | |||
| 29 | $style->success(sprintf('%d Benutzer gelöscht', $count)); |
||
| 30 | |||
| 31 | return 0; |
||
| 32 | } |
||
| 33 | } |