| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | protected function askToRebuildSite(): void |
||
| 12 | { |
||
| 13 | if ($this->option('no-interaction')) { |
||
|
|
|||
| 14 | return; |
||
| 15 | } |
||
| 16 | |||
| 17 | if ($this->confirm('Would you like to rebuild the site?', 'Yes')) { |
||
| 18 | $this->line('Okay, building site!'); |
||
| 19 | Artisan::call('build'); |
||
| 20 | $this->info('Site is built!'); |
||
| 21 | } else { |
||
| 22 | $this->line('Okay, you can always run the build later!'); |
||
| 23 | } |
||
| 26 |