Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | public function fire() |
||
31 | { |
||
32 | if ($name = $this->argument('module')) { |
||
33 | $module = $this->laravel['modules']->findOrFail($name); |
||
34 | |||
35 | $this->publish($module); |
||
36 | |||
37 | return; |
||
38 | } |
||
39 | |||
40 | foreach ($this->laravel['modules']->enabled() as $module) { |
||
41 | $this->publish($module); |
||
42 | } |
||
43 | } |
||
44 | |||
70 |