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