Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 12 |
Ratio | 100 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
27 | View Code Duplication | public function handle() |
|
28 | { |
||
29 | $this->info('Generating optimized autoload modules.'); |
||
30 | |||
31 | if ($module = $this->argument('module')) { |
||
32 | $this->dump($module); |
||
33 | } else { |
||
34 | foreach ($this->laravel['modules']->all() as $module) { |
||
35 | $this->dump($module->getStudlyName()); |
||
36 | } |
||
37 | } |
||
38 | } |
||
39 | |||
63 |