Completed
Push — master ( 6d41ca...2bcfec )
by
unknown
07:51 queued 10s
created

AdminLteUpdateCommand::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace JeroenNoten\LaravelAdminLte\Console;
4
5
use Illuminate\Console\Command;
6
7
class AdminLteUpdateCommand extends Command
8
{
9
    protected $signature = 'adminlte:update ';
10
11
    protected $description = 'Updated the all the required assets for AdminLTE';
12
13
    /**
14
     * Execute the console command.
15
     *
16
     * @return void
17
     */
18
    public function handle()
19
    {
20
        $this->call('adminlte:install', [
21
            '--force' => true, '--only' => 'assets',
22
        ]);
23
    }
24
}
25