| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php namespace Serverfireteam\Panel\Commands; |
||
| 36 | public function handle() |
||
| 37 | { |
||
| 38 | $this->info(' [ Welcome to ServerFireTeam Panel Installation ] '); |
||
| 39 | |||
| 40 | $this->call('elfinder:publish'); |
||
| 41 | |||
| 42 | $this->call('vendor:publish'); |
||
| 43 | |||
| 44 | $this->call('migrate', array('--path' => 'vendor/serverfireteam/panel/src/database/migrations')); |
||
| 45 | |||
| 46 | $this->call('db:seed', array('--class' => '\Serverfireteam\Panel\LinkSeeder')); |
||
| 47 | } |
||
| 48 | |||
| 70 |