Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class UseCommand extends Command |
||
9 | { |
||
10 | /** @var string */ |
||
11 | protected $signature = 'module:use |
||
12 | {module : The name of the module to use in the cli session}'; |
||
13 | |||
14 | /** @var string */ |
||
15 | protected $description = 'Use the specified module in the cli session.'; |
||
16 | |||
17 | public function handle(): void |
||
32 |