Total Complexity | 1 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class DatabaseMigrate extends Command |
||
9 | { |
||
10 | /** |
||
11 | * The console command name. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $name = 'dbm:migrate'; |
||
16 | /** |
||
17 | * The console command description. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $description = 'Migrate the Laravel Database Manager'; |
||
22 | |||
23 | /** |
||
24 | * Execute the console command. |
||
25 | * |
||
26 | * @param \Illuminate\Filesystem\Filesystem $filesystem |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | public function handle() |
||
38 |