Total Complexity | 4 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | class ClearCommand extends Command |
||
14 | { |
||
15 | /** @var ContainerInterface */ |
||
16 | private $container; |
||
17 | |||
18 | 4 | public function __construct(ContainerInterface $container) |
|
19 | { |
||
20 | 4 | parent::__construct(); |
|
21 | |||
22 | 4 | $this->container = $container; |
|
23 | 4 | } |
|
24 | |||
25 | 4 | protected function configure() |
|
31 | 4 | } |
|
32 | |||
33 | 3 | protected function execute(InputInterface $input, OutputInterface $output): int |
|
49 |