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