| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 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) |
||
| 20 | { |
||
| 21 | $this->promise = $promise; |
||
| 22 | parent::__construct(); |
||
| 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 |