Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class SchemaRebuildCommand extends Command |
||
14 | { |
||
15 | protected static $defaultName = 'cycle/schema/rebuild'; |
||
16 | private CycleDependencyProxy $promise; |
||
17 | |||
18 | public function __construct(CycleDependencyProxy $promise) |
||
19 | { |
||
20 | $this->promise = $promise; |
||
21 | parent::__construct(); |
||
22 | } |
||
23 | |||
24 | public function configure(): void |
||
27 | } |
||
28 | |||
29 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
36 | } |
||
37 | } |
||
38 |