Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | #[AsCommand( |
||
16 | name: 'vgr-core:lost-position-purge', |
||
17 | description: 'Command to purge lost positions' |
||
18 | )] |
||
19 | class LostPositionPurgeCommand extends Command |
||
20 | { |
||
21 | private LostPositionManager $lostPositionManager; |
||
22 | |||
23 | public function __construct(LostPositionManager $lostPositionManager) |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @param InputInterface $input |
||
31 | * @param OutputInterface $output |
||
32 | * @return int |
||
33 | * @throws Exception |
||
34 | */ |
||
35 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
41 |