| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | abstract class AbstractObjectStoreCommand extends Command |
||
| 14 | { |
||
| 15 | protected ObjectStoreInterface $objectStore; |
||
| 16 | |||
| 17 | 4 | public function __construct(ObjectStoreInterface $objectStore) |
|
| 18 | { |
||
| 19 | 4 | $this->objectStore = $objectStore; |
|
| 20 | |||
| 21 | 4 | parent::__construct(); |
|
| 22 | 4 | } |
|
| 23 | |||
| 24 | 1 | protected function execute(InputInterface $input, OutputInterface $output): int |
|
| 31 | } |
||
| 32 | |||
| 33 | abstract public function executeInner(SymfonyStyle $io, InputInterface $input): int; |
||
| 34 | } |
||
| 35 |