| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class BootstrapCommand extends Command |
||
| 12 | { |
||
| 13 | 1 | public function __construct( |
|
| 14 | private readonly ContainerInterface $dic, |
||
| 15 | ) { |
||
| 16 | 1 | parent::__construct( |
|
| 17 | 'setup:bootstrap', |
||
| 18 | 'Bootstraps uxmp' |
||
| 19 | ); |
||
| 20 | |||
| 21 | $this |
||
| 22 | 1 | ->usage( |
|
| 23 | '<bold> $0 sb</end> <comment></end> ## Bootstraps uxmp<eol/>' |
||
| 24 | ); |
||
| 25 | } |
||
| 26 | |||
| 27 | 1 | public function execute(): void |
|
| 30 | } |
||
| 31 | } |
||
| 32 |