Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class ProcessCommand extends Command |
||
14 | { |
||
15 | protected static $defaultName = 'setono:sylius-stock-movement:process'; |
||
16 | |||
17 | /** @var ReportConfigurationProcessorInterface */ |
||
18 | private $processor; |
||
19 | |||
20 | public function __construct(ReportConfigurationProcessorInterface $processor) |
||
21 | { |
||
22 | parent::__construct(); |
||
23 | |||
24 | $this->processor = $processor; |
||
25 | } |
||
26 | |||
27 | protected function configure(): void |
||
30 | } |
||
31 | |||
32 | public function execute(InputInterface $input, OutputInterface $output): int |
||
40 |