| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class WarpdriveSplitRefactorCommand extends Command |
||
| 12 | { |
||
| 13 | private ContainerInterface $dic; |
||
| 14 | |||
| 15 | public function __construct( |
||
| 16 | ContainerInterface $dic |
||
| 17 | ) { |
||
| 18 | $this->dic = $dic; |
||
| 19 | |||
| 20 | parent::__construct( |
||
| 21 | 'refactor:split', |
||
| 22 | 'Moves the warpdrive split from core to drive' |
||
| 23 | ); |
||
| 24 | |||
| 25 | $this |
||
| 26 | ->usage( |
||
| 27 | '<bold> $0 refactor:split</end> <comment></end> ## Refactors warpdrive split<eol/>' |
||
| 28 | ); |
||
| 29 | } |
||
| 30 | |||
| 31 | public function execute(): void |
||
| 39 | ); |
||
| 40 | } |
||
| 42 |