| Conditions | 2 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function handle() |
||
| 29 | { |
||
| 30 | $singular = ucfirst($this->argument('singular')); |
||
| 31 | $plural = ucfirst($this->argument('plural') ?: $singular.'s'); |
||
| 32 | |||
| 33 | $script = base_path("app/Console/Scripts/modulegenerator.sh {$singular} {$plural}"); |
||
| 34 | |||
| 35 | $this->info(shell_exec($script)); |
||
| 36 | } |
||
| 37 | } |
||
| 38 |