Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class SchemaClearCommand extends Command |
||
12 | { |
||
13 | protected static $defaultName = 'cycle/schema/clear'; |
||
14 | |||
15 | private CycleDependencyProxy $promise; |
||
16 | |||
17 | public function __construct(CycleDependencyProxy $promise) |
||
18 | { |
||
19 | $this->promise = $promise; |
||
20 | parent::__construct(); |
||
21 | } |
||
22 | |||
23 | public function configure(): void |
||
24 | { |
||
25 | $this->setDescription('Clear current schema'); |
||
26 | } |
||
27 | |||
28 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
33 | } |
||
34 | } |
||
35 |